こんにちは、Google プラスを Web アプリケーションに統合しようとしています。指示に従ってこのリンクページを使用してgoogle-plusボタンを追加しました。ボタンをクリックすると、ユーザーが受け入れるかキャンセルするためのウィンドウアクセスが開きます。しかし、アプリケーションへのユーザー ログインにそのオブジェクトを使用するにはどうすればよいでしょうか。
function signinCallback(authResult) {
if (authResult['status']['signed_in']) {
// Update the app to reflect a signed in user
// Hide the sign-in button now that the user is authorized, for example:
document.getElementById('signinButton').setAttribute();
} else {
// Update the app to reflect a signed out user
// Possible error values:
// "user_signed_out" - User is signed-out
// "access_denied" - User denied access to your app
// "immediate_failed" - Could not automatically log in the user
console.log('Sign-in state: ' + authResult['error']);
}
}