When using the ASP.Net MVC4 site, it is very easy to add OAuth authentication using SimpleMembership.
OAuthWebSecurity.RegisterTwitterClient(consumerKey,consumerSecret);
When using Azure Mobile Services on a client device, it is very easy to add OAuth authentication.
await App.MobileService.LoginAsync(MobileServiceAuthenticationProvider.Twitter);
The problem is that these are two different data stores. I need users to be able to register and / or log in from an application or site. What is the best / easiest way to provide integrated OAuth authentication from ASP.Net devices and site? Are samples available?
source share