Is it possible to customize the endpoint used for /token calls? #1411
Replies: 3 comments 7 replies
-
|
@mrichards3 |
Beta Was this translation helpful? Give feedback.
-
|
yes it will. See https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-net-client-assertions#signed-assertions |
Beta Was this translation helpful? Give feedback.
-
|
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. |
Beta Was this translation helpful? Give feedback.
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?
Beta Was this translation helpful? Give feedback.
All reactions