html Google Contacts API v3 Javascript示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Google Contacts API v3 Javascript示例相关的知识,希望对你有一定的参考价值。

<html>
  <head>
    <script src="https://apis.google.com/js/client.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
    <script>
      function auth() {
        var config = {
          'client_id': 'OAUTH_CLIENT_ID',
          'scope': 'https://www.google.com/m8/feeds'
        };
        gapi.auth.authorize(config, function() {
          fetch(gapi.auth.getToken());
        });
      }

      function fetch(token) {
        $.ajax({
          url: 'https://www.google.com/m8/feeds/contacts/default/full?alt=json',
          dataType: 'jsonp',
          data: token
        }).done(function(data) {
            console.log(JSON.stringify(data));
          });
      }
    </script>
  </head>

  <body>
    <button onclick="auth();">GET CONTACTS FEED</button>
  </body>
</html>

以上是关于html Google Contacts API v3 Javascript示例的主要内容,如果未能解决你的问题,请参考以下文章

Google Contacts API - 无法刷新访问令牌

带有 Google JavaScript 客户端库的 Google Contacts API

从 Oauth2 Google Contacts API 获取用户信息

Google Contacts API v3:如何使用全文查询?

通过 OAuth 2.0 和私钥(即服务帐户)访问 Google Contacts Api

在 Google Contacts API 3.0 版上使用 oauth2 检索刷新令牌