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.

If I open this url:

https://www.facebook.com/dialog/oauth?client_id=298062603388&response_type=token&redirect_uri=https%3A%2F%2Fwww.facebook.com%2Fconnect%2Flogin_success.html

And click "Allow", the browser should be redirected to an URL like

https://www.facebook.com/connect/login_success.html#access_token=...

And I did see that happen, earlier. However, now what it's actually pointed to is always

https://www.facebook.com/connect/login_success.html?error_reason=user_denied&error=access_denied&error_description=The+user+denied+your+request.

So it says I clicked "Deny", even if I didn't. The page even says "Success" (though it might just be a static file, as the URL implies)

I don't think I'm doing anything wrong (I get the information from this page, at the bottom, "Desktop apps"), but it would be foolish to immediately lay the blame on a Facebook bug.

I also couldn't create new apps on Facebook right now though (I get a nondescript "Sorry" error message). Could that have something to do with it?

share|improve this question
I'm experiencing the same, and can't find the way around it. Did you happen to find a solution? – uʍop ǝpısdn Sep 26 '11 at 15:58
@SantiagoLezica I'm not sure how I fixed it, but recently I switched to just using FB.login() from the Javascript SDK which was basically what I needed. – Bart van Heukelom Sep 27 '11 at 8:41

1 Answer

Took me a little while to figure this one out. The issue is related to the fact that you are in sandbox mode, but disabling it is not the way to fix this.

When you add a Facebook user to your app (as a tester, developer, admin, etc) they are initially given a Pending status. While the user has that pending status, they can view your Facebook app but can not grant privileges to it.

To remove the pending status, you need the person who you've granted the role to to log into their account. In their notifications you will see that they have been granted the role for the Facebook app. The user then has to click on that notification and accept it. Once accepted, the user is no longer pending and can accept Facebook privilege requests from the App.

share|improve this answer
2  
Legend, I kept telling everyone at work that this problem was their fault, and they didn't believe me! – gregdev May 9 '12 at 5:39

protected by Community Aug 26 '11 at 3:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.