Redirect URIs
A list of valid redirect URIs allowed in an authorization request. The first time an application applies for an authorization token, it sends a request that includes a redirect URI. The redirect URI indicates where Google should redirect the browser after the user allows (or denies) the authorization request. Web-based applications provide the URI of a handler page to call after the authorization request is complete; installed applications use a standard URI string. See the OAuth 2.0 documentation for details. If a web-based request does not include a URI listed here, the user will get an authorization error.
OK, I updated my settings such that the redirect URI can be:
Now this works, however, in reality, I develop several applications and never run off purely localhost. I also often I use my PC name such that others on the LAN can access the test site.
Hence, when testing, I would really want my redirect URI to be a variant of:
http://customHostName/Callback
Thanks for the temporary solution however!
Regards,
Daz.