Cross-domain authentication ASP.net MVC

后端 未结 6 605
刺人心
刺人心 2021-02-04 12:00

I have two different web application built with ASP.net MVC. This two application may not be running in the same server nor in the same domain.

I would like that if a us

6条回答
  •  时光说笑
    2021-02-04 12:41

    My Answer may not be the the best one, However you can use some tricky mechanism like

    1. whenever you are going on another application you need to pass one token from application A to B.
    2. Validate this token on B site.
    3. and Authorized that user based on token. (i mean apply silent or backdoor login)

提交回复
热议问题