Using Oauth tickets across several services?

前端 未结 4 1156
执笔经年
执笔经年 2020-12-02 21:27

I currently have a pair of OWIN-based services that each use OAuth authentication against the same set of users. I intend to isolate the authorisation server (i.e. The token

4条回答
  •  悲哀的现实
    2020-12-02 21:57

    You can use this nuget package https://www.nuget.org/packages/Owin.Security.AesDataProtectorProvider/

    It contains extension method for IAppBuilder that allows you setup own key

    appBuilder.UseAesDataProtectorProvider(key);
    

提交回复
热议问题