I’ve done facebook login.
But redirect uri is weird.
The problem is parameter not passed with HTTP query string.
So I couldn’t get parameter on my server program.
You can see that query is hash(#)
?state
[But in my case is started with]
#state
In my memory it was passed with query string originally.
Somethings changed?
2
Answers
The problem is '&response_type=token'
To fix this error just change
response_type=token
toresponse_type=code
in your API call.