Configuring an OpenID Provider Using Subdomain Identifiers Using DotNetOpenAuth

I am currently trying to implement an OpenID provider on my own domain name. Thus, I would like the OpenID of the user to be user.example.com , and not the default example.com/user.aspx/user ..

Is it possible for DotNetOpenAuthto to do this? If so, what changes do I need to make?

+3
source share
1 answer

Yes, it is absolutely possible.

  • Configure DNS for both the website and IIS to actually respond to user.example.com .
  • default.aspx , URL OpenID, , user.aspx. , , OP, URL ( http://www.example.com/provider.ashx)
  • provider.ashx ( server.aspx MVC, OP), user.example.com

. , , , URL- - . : # 1: IIS. DNS, , DNS.

+2

Source: https://habr.com/ru/post/1765044/


All Articles