Click here to Skip to main content
15,886,578 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
This is code for showing data of a user who currently loggedIn :
FB.api('/me', function(response) {
	alert("response: " + response.owner);
      console.log('Good to see you, ' + response.email + '.');
      document.getElementById('status').innerHTML = 'Good to see you, ' +
        parseJSON(response.name);
    });

How can I find more information like facebook-url,Number of friends etc.
Posted
Comments
Sunasara Imdadhusen 8-May-14 5:32am    
for more information please visit developer.facebook.com

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900