I have created asp.net mvc5 web project, I have enabled Google Authtication by un-commenting the following inside the Startup.Auth.CS:-
app.UseGoogleAuthentication();
now I have create a project on the following environment:-
Visual studio 2012 professional.
Asp.net mvc5 web application.
- Running on windows server 2008 R2.
And the Google authentication works well on my test project runs locally http://localhost:53357.
Yesterday I wanted to test the new Visual Studio 2013, so I download Visual Studio 2013 express on my windows 7 machine,, and I created a new asp.net mvc5 web project. But when I try to test the Google authentication I got the following error on google page:-
> 400. That’s an error.
>
>
>
> OpenID auth request contains an unregistered domain:
> http://localhost:53682
>
>
>
> Learn more
>
> That’s all we know.
So why google authentication works well on certain projects and fail to work on other?
Please adivce