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.

here is my query:

FB.api(
       {    
           method: 'fql.multiquery',   
           queries: {    
'friends':'SELECT uid1 FROM friend WHERE uid2= me()',   
'likes':'SELECT object_id FROM like WHERE user_id in (SELECT uid1 FROM #friends)'
}  
});
share|improve this question

2 Answers

Some FQL queries require that the queried user be logged in. In order to run theis queries without the user being logged in, your app must have the offline_access permission.

share|improve this answer
i have access_token of the current user. and i am trying from console developers.facebook.com/docs/reference/rest/fql.multiquery – dupdup Mar 3 '11 at 14:49
Even if you do have a token for the user, if your app does not have the offline_access permision, the token might have expired already. – Elad Lachmi Mar 3 '11 at 14:58
nope authorization is not the problem real part of the question is the indexed fields cannot be queried except actual user . – dupdup Mar 3 '11 at 15:39
up vote 0 down vote accepted

indexed fields cannot be queried except actual user for query your friends likes look at How to get friends likes via Facebook API

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.