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'm implementing the Graph API in Facebook to retrieve data as JSON from an "https" site.

I'm using the following code

          FB.getLoginStatus(function(response) {
              if (response.status === 'connected') { 
                    var accessToken = response.authResponse.accessToken;
                    document.getElementById("statusCheck").innerHTML = accessToken;
                    $.getJSON('https://graph.facebook.com/me/friends?access_token=' . accessToken, 
                      function(dataJSON){
                        //The rest
                      });       
               }    
             });

After this failed I tried to use $.ajax with no datatype specification and parsing the data with $.parseJSON but no information is retrieved at all

My question is really twofold: Is my JSON retrieval the problem or is it the fact that the protocol is "https"? If it is not possible to use getJSON on an external https protocol, how can I recover the hash of the Facebook friends?

share|improve this question

1 Answer

up vote 1 down vote accepted

your code is working. just use +(plus) instead .(dot) before accesstoken.

$.getJSON('https://graph.facebook.com/me/friends?access_token=' **+** accessToken, 
   function(dataJSON){
      console.log(dataJSON);
});
share|improve this answer
Haha, wow I feel dumb... Thanks. – Vivek Dec 24 '11 at 4:12
:) np Vivek.. go on coding... – Salt Dec 24 '11 at 4:18

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.