Guest User

Untitled

a guest
May 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function testAPI() {
  2. console.log('Welcome! Fetching your information.... ');
  3. FB.api('/me', {fields: 'name, email'}, function(response) {
  4. console.log('Successful login for: ' + response.name);
  5. document.getElementById('status').innerHTML =
  6. '' + response.name + ' ' + response.email + '';
  7. }); }
Add Comment
Please, Sign In to add comment