我按照说明将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:
。有谁能告诉我发生了什么事?非常感谢