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.

There's a problem with a project I'm working on. The project uses some kind of facebook API with@author Naitik Shah and version 2.0.4. Yesterday everything was working fine, but today when I try to login I get the following message:

Fatal error: Uncaught Exception: 200: Requires extended permission: read_stream thrown in /home/vhosts/library/facebook/facebook.php on line 425

The function that throws the exception is called _restserver and the piece of code, that throws the exception is:

if (is_array($result) && isset($result['error_code'])) {
   throw new FacebookApiException($result);
}

When I comment the throw part, it appears that $result does not contain the data I need. Any ideas if this is just a bug that will be fixed by facebook, or if they have banned us from calling the API, or something else?

Thank you for your time!

share|improve this question
1) Upgrade your SDK 2) show us the code that is actually causing the exception 3) grant the read_stream permission! – ifaour Oct 20 '11 at 8:05

1 Answer

up vote 2 down vote accepted

The error message is straight forward: you must ask more permission from user (read_stream) to read user news feed.

Please refer here.

share|improve this answer
Looks like Facebook has changed the required permissions for some of my actions last night. After adding the new permission and asking the user for this permission everything is OK. – Дамян Станчев Oct 20 '11 at 9:08

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.