In trying to integrate OAuth for Facebook in my web application, I receive the above error after the user signs in to Facebook. I am using the SqlMembershipProvider and the SqlRoleProvider.
Exception is thrown at this point in the RegisterExternalLogin.aspx page:
if (User.Identity.IsAuthenticated) { // User is already authenticated, add the external login and redirect to return url OpenAuth.AddAccountToExistingUser(ProviderName, ProviderUserId, ProviderUserName, User.Identity.Name); RedirectToReturnUrl();
ANY help is greatly appreciated.