Mike 3 years ago
parent
commit
a3b84d1880
1 changed files with 11 additions and 1 deletions
  1. 11 1
      desktop11/index.html

+ 11 - 1
desktop11/index.html

@@ -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'});
 }