Fixed: redirect_uri_mismatch Google SignIn Problem Oauth2
If you are trying to integrate Google oauth into your application then you might see this kind of error. This happens because you didn’t correctly configure the redirect url in Google console. Follow this steps:
– Login to https://console.developers.google.com & Go to your existing project
– Go to Api & Auth -> Credentials
– In my case I was trying to integrate it locally so ‘Authorized Javascript Engines’ say ‘http://localhost:8080’
– Now in ‘Authorized redirect URIs’ add entry ‘http://localhost:8080/signin/google’. You are done!
October 26th, 2015 in
Open Source, Random Picks..