I recently started implementing OAuth in an ASP.Net MVC 4 project.
I wrote a custom membership provider. All methods are completed in this ExtendedMembershipProvider.
When you try to use an account to log in to your MVC 4 account, everything works fine by default. I have a problem: a line that calls:
OAuthWebSecurity.Login(result.Provider, result.ProviderUserId, createPersistentCookie: false))
The above throws a NotImplementedException. It seems strange that I know that all my membership methods are complete.
The stack trace shows anything before this code as โexternalโ, so I wonder where the problem is?
source share