|
@@ -66,44 +66,16 @@ 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.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('testAPI(): ' + JSON.stringify(response));
|
|
|
- console.log('Successful login for: ' + response.name + ', email = ' + response.email);
|
|
|
- document.getElementById('status').innerHTML =
|
|
|
- 'Thanks for logging in, ' + response.name + '!';
|
|
|
-
|
|
|
- userId = response.email;
|
|
|
-
|
|
|
- // 取得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'});
|
|
|
-}
|
|
|
-
|
|
|
-function callFB() {
|
|
|
- FB.login(function(response) {
|
|
|
- if (response.authResponse) {
|
|
|
- console.log('Welcome! Fetching your information.... ');
|
|
|
- FB.api('/me', function(response) {
|
|
|
- console.log('Good to see you, ' + response.name + '.');
|
|
|
- });
|
|
|
- } else {
|
|
|
- console.log('User cancelled login or did not fully authorize.');
|
|
|
- }
|
|
|
+ console.log('Successful login for: ' + response.name + ', email = ' + response.email + ', id = ' + response.id);
|
|
|
+ document.getElementById('status').innerHTML = 'Thanks for logging in, ' + response.name + '!';
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
-callFB();
|
|
|
</script>
|
|
|
|
|
|
<div class="container-fluid" style="padding:0;margin:0 ">
|