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'm using OSQA and I simply trying to login with Facebook (without any change on the platform code), only setting 'app secret' and 'app id'.

My Facebook App settings:

Site URL: http://localhost:8080/osqa/
Canvas URL: http://localhost:8080/osqa/osqa/account/facebook/done/

I encounter this error:

{
   "error": {
      "message": "Invalid redirect_uri: Given URL is not allowed by the Application configuration.",
      "type": "OAuthException",
      "code": 191
   }
}

and this is the url with the redirect_uri

https://graph.facebook.com/oauth/authorize?scope=email&redirect_uri=http%3A%2F%2F127.0.0.1%3A8080%2Fosqa%2Fosqa%2Faccount%2Ffacebook%2Fdone%2F&client_id=***

I read a lot of posts concerning this problem here on stackoverflow and in other forums, I know there is a simple solution, but cannot figure out yet.

share|improve this question

1 Answer

up vote 1 down vote accepted

The redirect in your URL translates to this:

redirect_uri=http://127.0.0.1:8080/osqa/osqa/account/facebook/done/

Facebook just checks the strings and sees that 127.0.0.1 is not the same as localhost. So replace this in your app settings and the redirect should work.

share|improve this answer
It gives me back a 404 with this URL "127.0.0.1:8080/osqa/osqa/account/facebook/done/?code=***" I delete one occurence of osqa/ and works well. Now I must figure out how to solve the new problem – Sam Aug 9 '12 at 21:04
Check your APP_URL setting in settings_local.py. Pay attention to the comment above: # This shouldn't be followed by a trailing slash. – Jan Gerlinger Aug 9 '12 at 21:28
APP_URL = '127.0.0.1:8080/osqa'; If I delete "/osqa" I obtain an unuseless URL "127.0.0.1:8080/account/facebook/done/?code=***" Maybe is a bug somewhere else? – Sam Aug 9 '12 at 21:35
1  
Yeah, this is probably a bug there. You could try fix it, or as a dirty workaround hardcode your redirect_uri there ;) As you're APP_URL contains only one /osqa there is probably a /osqa to much in request.path. – Jan Gerlinger Aug 9 '12 at 21:55
1  
Here is the solution for the second problem ;) meta.osqa.net/questions/11746/… – Sam Aug 9 '12 at 22:48
show 6 more comments

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.