Reputation: 535
I am using Kinvey to handle Oauth on my AngularJS app, and it works just fine for Facebook, but when I try to sign in with Google, I am getting a 400 error:
Error: invalid_request
Invalid parameter value for redirect_uri: Fragment not allowed: localhost:9000/#/login
Has anyone ever encountered this issue with Google Oauth and Angular? Any ideas on how I can get around it? The issue stems from the hash in the URL for Angular's routing.
Upvotes: 6
Views: 2127
Reputation: 24617
The #
is called a fragment identifier
. The error Fragment not allowed:
means you must replace the #
with an alternative, such as:
Then redirect with Kinvey:
req.request({uri: 'http://localhost:9000/route/login',
method: 'GET'},
function(error, response, body){
response.statusCode = 302;
response.setHeader("Location", "/#/login");
response.end();
}
);
Here are some unrelated questions with similar issues:
Upvotes: 3