Is it possible to customize the endpoint used for /token calls? #1411
Unanswered
Mike Richards (mrichards3)
asked this question in
Q&A
Replies: 3 comments 7 replies
|
Mike Richards (@mrichards3) |
1 reply
|
yes it will. See https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-net-client-assertions#signed-assertions |
6 replies
|
Alternatively, if we could call Azure AD through a Private Endpoint (w/ Private Link), that would get us around the gateway/proxy issue entirely. That doesn't seem to be a capability that Azure AD offers today. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
We would like to route calls from internal services to Azure AD through an internal API gateway. Is it possible to customize the URL that this library uses for /token calls?
For example, if I configure my application as such:
At runtime, an HTTP call like this is made to acquire a token:
Instead, I would like the call to be made to an internal URL like this:
The internal gateway server would forward the request to
login.microsoftonline.comand then return the response back to my application.Is this type of setup possible using this library?
All reactions