无法获取Google帐户的令牌

时间:2015-12-21 10:09:30

标签: google-signin

我按照说明将Google帐户的ID令牌发送到后端服务器进行身份验证,但似乎令牌不存在。

function onSignIn(googleUser) {
  var profile = googleUser.getBasicProfile();
  var id_token = googleUser.getAuthResponse().id_token;
  console.log('ID: ' + profile.getId()); // Do not send to your backend! Use an ID token instead.
  console.log('Name: ' + profile.getName());
  console.log('Image URL: ' + profile.getImageUrl());
  console.log('Email: ' + profile.getEmail());
  console.log('Token: ' + id_token); 
}

控制台中未打印行Token:。有谁能告诉我发生了什么事?非常感谢

0 个答案:

没有答案