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 am confident my application is coded correctly (at least mostly), as it works about 98% of the time. However, about 2% of the time, I get what appears to be a valid auth token, but when I go to post a photo, I'm getting the following error "(OAuthException - #200) (#200) User must have accepted TOS". I have retry logic, but it gets the same error three times (so it's not a freak communication glitch).

I use the URL facebook.com/dialog/oauth to get the token, and then I use the C# Facebook client (Post method).

The other questions I've seen posted with this error appear to involve consistent failures, indicating an application error.

share|improve this question

1 Answer

Is it possible that a person is shown the PERMISSIONS page (on Facebook) and rejects it .. so the user is then redirected BACK to your website, but with the oauth error - which u need to handle. Basically => I want to log in via FB .. but I don't accept their conditions (eg. u might be asking for too many things) .. so I'll reject the login .. and the source website (you) can get stuffed (with all due respect, of course).

share|improve this answer
Good thought, but in my tests, when I reject the authorization, facebook doesn't return an auth token- instead it returns an error and an error description. – Eric Kassan Dec 31 '12 at 5:14

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.