gs11111
gs11111

Reputation: 659

Openid redirect not working

I tried this example for openid in http://weblogs.asp.net/haithamkhedre/archive/2011/03/13/openid-authentication-with-asp-net-mvc3-dotnetopenauth-and-openid-selector.aspx I applied the same code in my newly created project , I get this error when i click the google icon in the logon page. I din change any code from the sample project I downloaded from this website, still I get this error .

enter image description here

enter image description here

Upvotes: 1

Views: 467

Answers (1)

Andrew Arnott
Andrew Arnott

Reputation: 81791

This sounds just like an MVC controller problem. your Account controller is expected to have an Authenticate action. And since we're seeing a 404, I suggest you investigate what's wrong with your routes.

Keep in mind that this URL should respond to both GET and POST requests.

Upvotes: 2

Related Questions