The endpoints /token
and /authorize
for OAuth2 are not available in AD FS Management -> Services -> Endpoints, making it impossible to use OAuth2 with third-party applications.
The only endpoints related to OAuth2 are:
OAuth2:
/adfs/oauth2/deviceauth
OpenID Connect:
/adfs/.well-known/openid-configuration
/adfs/discovery/keys
/adfs/userinfo
All these endpoints are enabled, and the endpoint /adfs/.well-known/openid-configuration
returns the following:
"authorization_endpoint": "https://mydomain.com/adfs/oauth2/authorize/",
"token_endpoint": "https://mydomain.com/adfs/oauth2/token/"
However, I cannot access the /authorize
and /token
endpoints directly.
Is it necessary to install any additional plugins to enable access to these endpoints?The endpoints /token
and /authorize
for OAuth2 are not available in AD FS Management -> Services -> Endpoints, making it impossible to use OAuth2 with third-party applications.
The only endpoints related to OAuth2 are:
OAuth2:
/adfs/oauth2
/adfs/oauth2/deviceauth
OpenID Connect:
/adfs/.well-known/openid-configuration
/adfs/discovery/keys
/adfs/userinfo
All these endpoints are enabled, and the endpoint /adfs/.well-known/openid-configuration
returns the following:
"authorization_endpoint": "https://mydomain.com/adfs/oauth2/authorize/",
"token_endpoint": "https://mydomain.com/adfs/oauth2/token/"
However, I cannot access the /authorize
and /token
endpoints directly.
Is it necessary to install any additional plugins to enable access to these endpoints?