我的计划是使用Xing作为社交登录。我的问题是我无法为OWIN找到自定义身份验证的上帝样本。
对于Google+简单
//IAppBuilder app
app.UseGoogleAuthentication(new GoogleOAuth2AuthenticationOptions()
{
ClientId = "xyz",
ClientSecret = "abc"
});
我创建了一个兴应用程序并从此应用程序获得了Id和Secret。但是如何使用此ID和Secret创建自定义身份验证?我该如何使用它?
答案 0 :(得分:0)
你可以像这样使用它:
var xingOptions = new XingAuthenticationOptions()
{
ConsumerKey = ConfigurationManager.AppSettings["xingConsumerKey"],
ConsumerSecret = ConfigurationManager.AppSettings["xingConsumerSecret"]
};
app.UseXingAuthentication(xingOptions);