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.