2
我在閱讀有關google Oauth2 sign-in的文檔。對Google登錄文檔缺少解釋
下面是混淆的部分:
var profile = googleUser.getBasicProfile();
console.log("ID: " + profile.getId()); // Don't send this directly to your server!
console.log('Full Name: ' + profile.getName());
什麼是存儲在profile.getId
,如果我把它時會發生什麼?
代替id_token
存儲什麼?我想解釋而不是評論中的建議。
// The ID token you need to pass to your backend:
var id_token = googleUser.getAuthResponse().id_token;
獎金的問題:谷歌沒有我登錄同一id_token
每次都返回使用相同的帳戶?