标签:
<!DOCTYPE html>
<html>
  <head>
    <meta charset=‘utf-8‘ />
  </head>
  <body>
    <!--Add a button for the user to click to initiate auth sequence -->
    <button id="authorize-button" style="visibility: hidden">Authorize</button>
    <script type="text/javascript">
    // Enter a client ID for a web application from the Google Developer Console.
    // The provided clientId will only work if the sample is run directly from
    // https://google-api-javascript-client.googlecode.com/hg/samples/authSample.html
    // In your Developer Console project, add a JavaScript origin that corresponds to the domain
    // where you will be running the script.
    var clientId = ‘564722376202-in1jqjg3n5eb3e6n7kg2deps2qka1ijs.apps.googleusercontent.com‘;
    // Enter the API key from the Google Develoepr Console - to handle any unauthenticated
    // requests in the code.
    // The provided key works for this sample only when run from
    // https://google-api-javascript-client.googlecode.com/hg/samples/authSample.html
    // To use in your own application, replace this API key with your own.
    var apiKey = ‘CjQaEhrHfbtQOjKreEQjrpRS‘;
    // To enter one or more authentication scopes, refer to the documentation for the API.
    var scopes = ‘https://www.googleapis.com/auth/plus.me‘;
    // Use a button to handle authentication the first time.
    function handleClientLoad() {
      gapi.client.setApiKey(apiKey);
      window.setTimeout(checkAuth,1);
    }
    function checkAuth() {
      gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: true}, handleAuthResult);
    }
    function handleAuthResult(authResult) {
      var authorizeButton = document.getElementById(‘authorize-button‘);
      if (authResult && !authResult.error) {
        authorizeButton.style.visibility = ‘hidden‘;
        makeApiCall();
      } else {
        authorizeButton.style.visibility = ‘‘;
        authorizeButton.onclick = handleAuthClick;
      }
    }
    function handleAuthClick(event) {
      gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: false}, handleAuthResult);
      return false;
    }
    // Load the API and make an API call.  Display the results on the screen.
    function makeApiCall() {
      gapi.client.load(‘plus‘, ‘v1‘, function() {
        var request = gapi.client.plus.people.get({
          ‘userId‘: ‘6099994‘
        });
        request.execute(function(resp) {
          var heading = document.createElement(‘h4‘);
          var image = document.createElement(‘img‘);
          image.src = resp.image.url;
          heading.appendChild(image);
          heading.appendChild(document.createTextNode(resp.displayName));
          document.getElementById(‘content‘).appendChild(heading);
        });
      });
    }
    </script>
    <!-- <script type="text/javascript" src="authorSample.js"/> -->
    <!-- 例子:https://google-api-javascript-client.googlecode.com/hg/samples/authSample.html
    	  参照网页:	https://developers.google.com/api-client-library/javascript/samples/samples
     
maven版本:
<dependency>
      <groupId>com.google.api-client</groupId>
      <artifactId>google-api-client</artifactId>
      <version>1.19.0</version>
    </dependency>
    <dependency>
        <groupId>com.google.http-client</groupId>
        <artifactId>google-http-client-jackson2</artifactId>
        <version>1.19.0</version>
    </dependency>
    <dependency>
      <groupId>com.google.apis</groupId>
      <artifactId>google-api-services-content</artifactId>
      <version>v2-rev33-1.19.1</version>
    </dependency>
-->
    
    <script src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script>
    <div id="content"></div>
    <p>Retrieves your profile name using the Google Plus API.</p>
  </body>
</html>
标签:
原文地址:http://www.cnblogs.com/leo3689/p/4870358.html