如何使用Google帐户登录

时间:2016-05-19 10:54:02

标签: login gmail ibm-mobilefirst gmail-api google-login

我们想要使用任何Google帐户登录 我们从谷歌开发者创建了client_id,client_secret。

任何人都请告诉我该怎么办。
无论我们做什么代码都发布在下面

OAuth 2.0客户端ID类型为webapplication

我收到此错误: invalid_client未找到OAuth客户端

enter image description here

请任何一个人为什么要来

var CLIENT_ID = '349212001841-t1qnhfhp7ail46dh5rn1t6vdc10op93l.apps.googleusercontent.com';
			
				var SCOPES = [ 'https://www.googleapis.com/auth/gmail.readonly' ];
			
				function checkAuth() {
					gapi.auth.authorize({
						'client_id' : CLIENT_ID,
						'scope' : SCOPES.join(' '),
						'immediate' : true
					}, handleAuthResult);
				}
			
				function handleAuthResult(authResult) {
					var authorizeDiv = document.getElementById('authorize-div');
					if (authResult && !authResult.error) {
						authorizeDiv.style.display = 'none';
						loadGmailApi();
					} else {
						authorizeDiv.style.display = 'inline';
					}
				}
			
				function handleAuthClick(event) {
					gapi.auth.authorize({
						client_id : CLIENT_ID,
						scope : SCOPES,
						immediate : false
					}, handleAuthResult);
					return false;
				}
			
				function loadGmailApi() {
					gapi.client.load('gmail', 'v1', listLabels);
				}
			
				function listLabels() {
					var request = gapi.client.gmail.users.labels.list({
						'userId' : 'me'
					});
			
					request.execute(function(resp) {
						var labels = resp.labels;
						appendPre('Labels:');
			
						if (labels && labels.length > 0) {
							for (i = 0; i < labels.length; i++) {
								var label = labels[i];
								appendPre(label.name)
							}
						} else {
							appendPre('No Labels found.');
						}
					});
				}
			
			function appendPre(message) {
					var pre = document.getElementById('output');
					var textContent = document.createTextNode(message + '\n');
					pre.appendChild(textContent);
				}
<!DOCTYPE HTML>
<html>
    	<head>
    		<meta charset="UTF-8">
    		<title>LoginSN</title>
    		<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0">
    		<!--
    			<link rel="shortcut icon" href="images/favicon.png">
    			<link rel="apple-touch-icon" href="images/apple-touch-icon.png"> 
    		-->
    		<link href="jqueryMobile/jquery.mobile-1.4.5.css" rel="stylesheet">
    		<link rel="stylesheet" href="css/main.css">
    		<script>window.$ = window.jQuery = WLJQ;</script>
    		<script src="jqueryMobile/jquery.mobile-1.4.5.js"></script>
    		<script src="https://apis.google.com/js/client.js?onload=checkAuth"/></script>
    		
  </head>
		
    	<body style="display: none;">
    	
    		<div data-role="page" id="loginPage">
    			<div data-role="content" style="padding: 15px">
    				<h1 id="fb-welcome"></h1>
					<label for="text">User Name:</label><input type="text" name="text" id="unL">
					<label for="text">Password:</label><input type="password" name="text" id="pwdL">
					<a href="#dashboardPage" data-role="button" id="buttonLn">LOGIN</a>
					<a href="#registrationPage" data-role="button" id="buttonRe">REGISRASTION</a>
					<a href="#" data-role="button" id="buttonF" onclick="fblogin()">via Facebook Login</a>
					<!-- <a href="#" data-role="button" id="login" class="g-signin2" data-onsuccess="onSignIn">via Google Login</a> -->
					<!-- <a href="#" data-role="button" id="login" onclick="callGoogle()">via Google Login</a>  -->
					
					<!--  <a href="#" data-role="button" id="login" onclick="login('google')">via Google Login</a>  -->
					<div id="authorize-div" >
					  <span>Authorize access to Gmail API</span>
					  <a href="#" data-role="button" id="authorize-button" onclick="handleAuthClick(event)">via Google Login</a>
					</div>
				</div>
    		</div>
          <div data-role="page" id="dashboardPage">
    			<div data-role="content" style="padding: 15px">
    				<a href="#" data-role="button" onclick='Logout();'>LogOut</a>
    			</div>
    		</div>
    		
    		<script src="js/initOptions.js"></script>
    		<script src="js/main.js"></script>
    		<script src="js/messages.js"></script>
    		
    	</body>
</html>

2 个答案:

答案 0 :(得分:0)

我想您可能错过了添加Google的javascript <script src="https://apis.google.com/js/client.js?onload=checkAuth">

根据Google document中的代码示例:

<html>
<head>
<script type="text/javascript">
  // Your Client ID can be retrieved from your project in the Google
  // Developer Console, https://console.developers.google.com
  var CLIENT_ID = '<YOUR_CLIENT_ID>';

  var SCOPES = ['https://www.googleapis.com/auth/gmail.readonly'];

  /**
   * Check if current user has authorized this application.
   */
  function checkAuth() {
    gapi.auth.authorize(
      {
        'client_id': CLIENT_ID,
        'scope': SCOPES.join(' '),
        'immediate': true
      }, handleAuthResult);
  }

  /**
   * Handle response from authorization server.
   *
   * @param {Object} authResult Authorization result.
   */
  function handleAuthResult(authResult) {
    var authorizeDiv = document.getElementById('authorize-div');
    if (authResult && !authResult.error) {
      // Hide auth UI, then load client library.
      authorizeDiv.style.display = 'none';
      loadGmailApi();
    } else {
      // Show auth UI, allowing the user to initiate authorization by
      // clicking authorize button.
      authorizeDiv.style.display = 'inline';
    }
  }

  /**
   * Initiate auth flow in response to user clicking authorize button.
   *
   * @param {Event} event Button click event.
   */
  function handleAuthClick(event) {
    gapi.auth.authorize(
      {client_id: CLIENT_ID, scope: SCOPES, immediate: false},
      handleAuthResult);
    return false;
  }

  /**
   * Load Gmail API client library. List labels once client library
   * is loaded.
   */
  function loadGmailApi() {
    gapi.client.load('gmail', 'v1', listLabels);
  }

  /**
   * Print all Labels in the authorized user's inbox. If no labels
   * are found an appropriate message is printed.
   */
  function listLabels() {
    var request = gapi.client.gmail.users.labels.list({
      'userId': 'me'
    });

    request.execute(function(resp) {
      var labels = resp.labels;
      appendPre('Labels:');

      if (labels && labels.length > 0) {
        for (i = 0; i < labels.length; i++) {
          var label = labels[i];
          appendPre(label.name)
        }
      } else {
        appendPre('No Labels found.');
      }
    });
  }

  /**
   * Append a pre element to the body containing the given message
   * as its text node.
   *
   * @param {string} message Text to be placed in pre element.
   */
  function appendPre(message) {
    var pre = document.getElementById('output');
    var textContent = document.createTextNode(message + '\n');
    pre.appendChild(textContent);
  }

</script>
<script src="https://apis.google.com/js/client.js?onload=checkAuth">
</script>
</head>
<body>
<div id="authorize-div" style="display: none">
  <span>Authorize access to Gmail API</span>
  <!--Button for the user to click to initiate auth sequence -->
  <button id="authorize-button" onclick="handleAuthClick(event)">
    Authorize
  </button>
 </div>
 <pre id="output"></pre>
 </body>
 </html>

请补充一点,我认为这应该有效。如果有任何进展,请更新我们。

答案 1 :(得分:0)

看起来你有&lt;&gt;围绕客户端ID。你不想要那些。