Mike 3 vuotta sitten
vanhempi
commit
40210bdbef
1 muutettua tiedostoa jossa 9 lisäystä ja 3 poistoa
  1. 9 3
      desktop11/index.html

+ 9 - 3
desktop11/index.html

@@ -44,8 +44,10 @@ function statusChangeCallback(response) {  // Called with the results from FB.ge
 
 function checkLoginState() {               // Called when a person is finished with the Login Button.
     FB.getLoginStatus(function(response) {   // See the onlogin handler
-        statusChangeCallback(response);
+        console.log(statusChangeCallback(response));
     });
+
+    testAPI();
 }
 
 window.fbAsyncInit = function() {
@@ -63,9 +65,13 @@ window.fbAsyncInit = function() {
 
 function testAPI() {                      // Testing Graph API after login.  See statusChangeCallback() for when this call is made.
     console.log('Welcome!  Fetching your information.... ');
-       
+    
+    // FB.login(function(response) {
+    //     console.log('FB.login: ' + JSON.stringify(response));
+    // }, {scope: 'public_profile,email'});
+    
     FB.api('/me/?fields=id,name,email', function(response) {
-        console.log('成功登入: ' + JSON.stringify(response));
+        console.log('testAPI(): ' + JSON.stringify(response));
         console.log('Successful login for: ' + response.name + ', email = ' + response.email + ', id = ' + response.id);
         document.getElementById('status').innerHTML = 'Thanks for logging in, ' + response.name + '!';
     });