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 have a facebook page tab where i try to get the access token with the link

https://www.facebook.com/dialog/oauth?client_id=[APP_ID]&redirect_uri=[REDIRECT_URI]

I has been working, but now all of a sudden I just get a generic error message: "An error occurred. Please try again later."

I have checked and the APP_ID is correct, and as far as i can see the applications settings are ok. Have there been any new changes to this or something?

share|improve this question

1 Answer

up vote 1 down vote accepted

This error message appears when the urls in the settings do not match the page you're trying to login from.

In the app settings you need to make sure that all urls share the same domain, also, if you have other domains which are different (sub domains, it's not possible with completely different urls) then add them in the "App Domain" field in the settings page.

Make sure that the redirect_uri also is of the same domain as the what you have in your application settings.

Another reason that might cause it is that maybe your app is on "sandbox mode".

There are plenty of questions about this problem:

share|improve this answer
1  
This is kind of correct. I had the wrong redirect_uri, but it was the formatting of it that was wrong not the domain. Probably because the app was first created before the timeline stuff since it did work before that. – user727441 Apr 23 '12 at 14:32

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.