Reputation: 187399
When asking for authorisation by redirecting to the following url:
https://graph.facebook.com/oauth/authorize?client_id=144921372242843&redirect_uri=http://localhost:18080/grails/facebook/facebookLogin&scope=user_about_me
Facebook returns the error message (in JSON):
Invalid redirect_uri Given URL is not permitted by the application configuration.'
If I change the port number used in redirect_uri
from 18080 to 8080 it works fine. Does anyone know which ports Facebook will accept (and why)?
Upvotes: 3
Views: 2125
Reputation: 50982
As said somewhere in configuration, to be able to "test" your application on localhost, you need to use port 8080. I really see no reason why would you use 18080, used for PureMessage manager
Upvotes: 2