I am running the asp.net identity with MV5 which gives users the option to authenticate with external services such as Google, Facebook and many others. I installed the owin.security.providers so that I can use the Instagram authentication. With other services it's enough to add the following codes in the Startup.Auth:
app.UseTwitterAuthentication(
consumerKey: "***",
consumerSecret: "***");
app.UseFacebookAuthentication(
appId: "***",
appSecret: "***");
app.UseGoogleAuthentication(
clientId: "***",
clientSecret: "***");
app.UseYahooAuthentication(
"***", "***");
But that doesn't work with Instagram. Any tips on how to use the Instagram authentication system?
app.UseIntagramAuthentication(//THAT DOESN'T WORK
"***", "***");
UPDATE
The correct code for Instagram authentication in the StartUp.Auth.cs is:
app.UseInstagramInAuthentication(
clientId: "YOUR CLIENT ID",
clientSecret: "YOUR CLIENT SECRET");