Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get OAuth to work with the Visual Studio 2012 Web Forms templates. I have followed the instructions from Scott's video:

http://www.asp.net/vnext/overview/videos/oauth-in-the-default-aspnet-45-templates

But its throwing NullReferenceException in OpenAuthProvider.ascx.cs Page_Load(), here:

OpenAuth.RequestAuthentication(provider, redirectUrl);

Which when you delve into the details it shows that it's being thrown from DotNetOpenAuth.AspNet.OpenAuthSecurityManager.RequestAuthentication(String returnUrl)

However, when I new up from a MVC4 template it works like a dream.

Has anyone encountered this?

EDIT: It's clearly an environment issue on my laptop, tried on an alternative and had no problem. I suspect it may be down to me installing VS2012 Ultimate RC, then installing RTM Professional on top of that - though a clean re-install didn't change anything.

share|improve this question

2 Answers

I also hit this problem and wrote up a short post on how to fix it.

The short version is the providerName is being passed as "Facebook" or "Google" through the template. The AuthenticationClientManager.GetProviderByName() method is expecting "facebook" or "google".

http://wasntnate.com/2012/10/openauth-requestuthentication-nullreference-exception-explained/

share|improve this answer

It looks like this can happen when you instantiate the OpenAuthSecurityManager class via its OpenAuthSecurityManager(HttpContextBase) constructor, or its OpenAuthSecurityManager(HttpContextBase, IAuthenticationClient, IOpenAuthDataProvider) constructor if you pass null in as the second parameter.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.