Using Oauth tickets across several services?

前端 未结 4 1161
执笔经年
执笔经年 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:56

    The Katana OAuth2 Authorization Server middleware wasn't really designed for this scenario (mainly because its reliance upon the machinekey for token verification).

    If you're looking to centralize the token generation then you should look into an OAuth2 authorization server that's designed for this. Thinktecture AuthorizationServer is an open source server that does this: http://thinktecture.github.io/Thinktecture.AuthorizationServer/

提交回复
热议问题