标签: c# oauth-2.0 asp.net-web-api2 owin claims-based-identity
我有OWIN hosted ASP .NET Web API。目前,它使用Google来提供客户的身份。我跟着this MS doc来实现它。
OWIN hosted ASP .NET Web API
Google
现在我需要使用提供身份的公司Cloud Service。关于用户的程序保持不变,但他必须提供他的云服务凭证。
Cloud Service
由于我不能使用文档中给出的任何内置函数,如app.UseGoogleAuthentication(),我应该选择如何实现它?
app.UseGoogleAuthentication()
提前致谢:)