Facebook error "The redirect_uri parameter is missing."

Kohana_Exception [ 0 ]: Error fetching remote https://graph.facebook.com/oauth/access_token? client_id=<removed>& client_secret=<remove>& code=<remove>& redirect_uri=http%3A%2F%2F<ip>%2Flogin%3Fmethod%3Dfboauth%26redirect_uri%3Dhttp%253A%252F%252F<ip>%252F [ status 400 ] {"error":{"type":"OAuthException", "message":"Missing redirect_uri parameter."}} 

Even though I have enabled redirect_uri, Facebook Connect reports this otherwise.

+4
source share
1 answer

redirect_uri = HTTP% 3A% 2F% 2F% 2F

There are three% 2F in this redirect_uri, which means three slash: http: ///

I'm not sure how you create it, but you have to check what might cause an extra slash.

+2
source

All Articles