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.

Hi I am building an app for a company that has several official facebook pages for products. In the app we want to display all the official page posts for those pages in a news feed. How can I query fb using the application access token instead of as a user? I get an error when I try the below query stating that read stream permissions need to be granted.

"Queries for multiple source_ids require a non-zero viewer that has granted read_stream permission"

string _requestURL = "https://api.facebook.com/method/fql.query?query=SELECT post_id, message, permalink, likes, actor_id, comments, created_time FROM stream WHERE source_id in (1,2,3, 4)  AND actor_id  in (1,2,3, 4) AND message != '' LIMIT 100&format=json&access_token=appID|AppSecret";

Any idea how to do this?

Thanks,

Rhonda

share|improve this question
As stated, does the access token have the read_stream permissions ? You can specify the different permissions needed for the access token. If you have doubts, you can paste the access token in the linter tool (developers.facebook.com/tools/debug) and verify. – Deepak Lakshmanan Sep 6 '12 at 22:45
If I run the queries seperately and concatenate the results it works just fine. – Rhonda Sep 7 '12 at 21:24
It's a current limitation in queries that contain more than one source_id when using an app access token. – Donn Lee Sep 11 '12 at 1:25

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.