Advertisement
Guest User

Untitled

a guest
Mar 13th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. FB.login(function(response) {
  2. if (response.authResponse) {
  3. console.log('Welcome! Fetching your information.... ');
  4. FB.api('/me', function(response) {
  5. console.log('Good to see you, ' + response.name + '.');
  6. });
  7. } else {
  8. console.log('User cancelled login or did not fully authorize.');
  9. }
  10. });
  11.  
  12. FB.login(function(response) {
  13.  
  14. if (response.authResponse) {
  15.  
  16. console.log('Welcome! Fetching your information.... ');
  17. FB.api('/me', function(response) {
  18.  
  19. console.log('Good to see you, ' + response.name + '.');
  20.  
  21. });
  22. } else {
  23. console.log('User cancelled login or did not fully authorize.');
  24.  
  25. }
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement