附加到 URL 的 IdentityServer4 端点跳过端口地址
IdentityServer4 endpoint skip port address attached to the URL
Identityserver4 端点未使用 .well-known/openid-configuration URL http://example.org:7000/.well-known/openid-configuration
的端口地址
"issuer": "http://example.org:7000",
"jwks_uri": "http://example.org/.well-known/openid-configuration/jwks",
"authorization_endpoint": "http://example.org/connect/authorize",
"token_endpoint": "http://example.org/connect/token",
"userinfo_endpoint": "http://example.org/connect/userinfo",
"end_session_endpoint": "http://example.org/connect/endsession",
"check_session_iframe": "http://example.org/connect/checksession",
"revocation_endpoint": "http://example.org/connect/revocation",
"introspection_endpoint": "http://example.org/connect/introspect",
"device_authorization_endpoint": "http://example.org/connect/deviceauthorization"
如何设置端点以附加如下所示的端口地址
"issuer": "http://example.org:7000",
"jwks_uri": "http://example.org:7000/.well-known/openid-configuration/jwks",
"authorization_endpoint": "http://example.org:7000/connect/authorize",
"token_endpoint": "http://example.org:7000/connect/token",
"userinfo_endpoint": "http://example.org:7000/connect/userinfo",
"end_session_endpoint": "http://example.org:7000/connect/endsession",
"check_session_iframe": "http://example.org:7000/connect/checksession",
"revocation_endpoint": "http://example.org:7000/connect/rev`enter code here`ocation"
"introspection_endpoint": "http://example.org:7000/connect/introspect",
"device_authorization_endpoint": "http://example.org:7000/connect/deviceauthorization"
我通过确保域没有端口地址但端口 80 来解析域。
Identityserver4 端点未使用 .well-known/openid-configuration URL http://example.org:7000/.well-known/openid-configuration
的端口地址"issuer": "http://example.org:7000",
"jwks_uri": "http://example.org/.well-known/openid-configuration/jwks",
"authorization_endpoint": "http://example.org/connect/authorize",
"token_endpoint": "http://example.org/connect/token",
"userinfo_endpoint": "http://example.org/connect/userinfo",
"end_session_endpoint": "http://example.org/connect/endsession",
"check_session_iframe": "http://example.org/connect/checksession",
"revocation_endpoint": "http://example.org/connect/revocation",
"introspection_endpoint": "http://example.org/connect/introspect",
"device_authorization_endpoint": "http://example.org/connect/deviceauthorization"
如何设置端点以附加如下所示的端口地址
"issuer": "http://example.org:7000",
"jwks_uri": "http://example.org:7000/.well-known/openid-configuration/jwks",
"authorization_endpoint": "http://example.org:7000/connect/authorize",
"token_endpoint": "http://example.org:7000/connect/token",
"userinfo_endpoint": "http://example.org:7000/connect/userinfo",
"end_session_endpoint": "http://example.org:7000/connect/endsession",
"check_session_iframe": "http://example.org:7000/connect/checksession",
"revocation_endpoint": "http://example.org:7000/connect/rev`enter code here`ocation"
"introspection_endpoint": "http://example.org:7000/connect/introspect",
"device_authorization_endpoint": "http://example.org:7000/connect/deviceauthorization"
我通过确保域没有端口地址但端口 80 来解析域。