views:

447

answers:

1

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

Even though I'm included redirect_uri, Facebook Connect is reporting otherwise.

+1  A: 

redirect_uri=http%3A%2F%2F%2F

There are three %2F in that redirect_uri, meaning three forward slashes: http:///

I am not sure how you are building it, but you should check to see what would cause that extra slash.

slacker