I was reading the OAuth 2.0 RFC 6749. In section: (Protocol Endpoints)[https://tools.ietf.org/html/rfc6749#section-3] it mentions that the Authorization server needs an authorization endpoint
.
In the application I am building, there is a need for another client that wants a different way of completing the authorization code flow, hence was considering two options:
expose a new endpoint on a different path
retain existing endpoint (
/authorization
) but watch for headers that the new client will provide
The spec does not say anything about exposing multiple Authorization endpoints. Was wondering if it would be compliant?