|
@@ -70,11 +70,21 @@ function testAPI() { // Testing Graph API after login. See
|
|
|
console.log('FB.login: ' + JSON.stringify(response));
|
|
|
}, {scope: 'public_profile,email'});
|
|
|
|
|
|
- FB.api('/me', function(response) {
|
|
|
+ FB.api('/me/?fields=id,', function(response) {
|
|
|
console.log('testAPI(): ' + JSON.stringify(response));
|
|
|
console.log('Successful login for: ' + response.name + ', email = ' + response.email);
|
|
|
document.getElementById('status').innerHTML =
|
|
|
'Thanks for logging in, ' + response.name + '!';
|
|
|
+
|
|
|
+ // 取得email
|
|
|
+ FB.api('/'+userId+'/?fields=id,name,email',
|
|
|
+ 'GET',
|
|
|
+ {},
|
|
|
+ function(response) {
|
|
|
+ console.log('getUserInfo(): ' + JSON.stringify(response));
|
|
|
+ console.log('Successful login for: ' + response.name + ', email = ' + response.email);
|
|
|
+ }
|
|
|
+ );
|
|
|
}, {scope: 'public_profile,email'});
|
|
|
}
|
|
|
|