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 have tested the following fql query with facebook's fql testing tool (http://developers.facebook.com/docs/reference/rest/fql.query/):

"SELECT url FROM url_like WHERE user_id = me()" and it's replying with a list of my likes.

However trying to query graphapi with the exact query using javascript sdk fails (object returned but no rows)

Hers's my JS code:

FB.api(  
{  
   method: 'fql.query',  
   query: 'SELECT url FROM url_like WHERE user_id = me()'  
    },  
      function(response){ 
        alert(response);
            for( var i = 0 ; i < response.length ; i++ ) 
            alert(response[i]['url']);
    }
};     

Any thoughts would be apreciated Thx

share|improve this question
Does it give anything if you use a foreach() loop to go through the data? – Coulton Oct 25 '11 at 8:36
the response it parsed as json. use jQuery.parseJSON(response) first (if using jQuery) – OptimusCrime Oct 25 '11 at 8:44
Thx for the replies. The code was correct. The malfunction was caused by improper use of the connect button. – Ion Andrei Bara Oct 25 '11 at 17:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.