Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using facebook javascript sdk to retrieve logged in users info.

I am able to retrieve user's name and Id with response.id and response.name. I want to see the complete json response I get from facebook.

I am new to json. I want to be able see the entire response. I appreciate any help.

function login(){
    FB.api('/me', function(response) {
        document.getElementById('userName').innerHTML = response.name;
    });
}

Thanks for your help.

share|improve this question

1 Answer

up vote 0 down vote accepted

Log the value of response on your console using:

console.log(response);

Here's the entire snippet:

function login() {
    FB.api('/me', function(response) {
        console.log(response);
    });
}

This is what I see when I console log at my end:

first_name: "Anurag"
gender: "male"
id: "...."
last_name: "Mishra"
link: "...."
locale: "en_US"
name: "Anurag Mishra"
timezone: ...
updated_time: "..."
verified: ...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.