Google+ サインイン ボタンを介してユーザーを認証する次のコードがあります。
<html>
<head>
<!-- google api -->
<meta name="google-signin-client_id" content="xxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com">
<meta name="google-signin-scope" content="email">
</head>
<body>
<div id="google-signin"></div>
<script>
function signOut() {
var auth2 = gapi.auth2.getAuthInstance();
auth2.signOut().then(function () {
console.log('User signed out.');
});
function onGoogleSuccess(googleUser) {
// get the token
var id_token = googleUser.getAuthResponse().id_token;
// console.log('Logged in as: ' + googleUser.getBasicProfile().getName());
}
function onGoogleFailure(error) {
console.log(error);
}
function renderButton() {
gapi.signin2.render('google-signin', {
'scope': 'https://www.googleapis.com/auth/plus.login',
'width': 242,
'height': 56,
'longtitle': true,
'theme': 'dark',
'onsuccess': onGoogleSuccess,
'onfailure': onGoogleFailure
});
}
</script>
</body>
</html>
ボタンをクリックすると、認証ポップアップ ウィンドウが表示され、認証すると「onGooglesuccess」関数が実行されますが、ページにリダイレクトされません。コードを取得できる特定の .aspx ページにリダイレクトし、それを tokrn に置き換えて、ユーザー情報を取得したいと考えています。
どうやってやるの?Google でドキュメントを読んでみましたが、その方法がわかりません。
ASP.NET 4.5 / C# / Javascipt でアプリケーションを開発しています