Hi All,
I am trying to replace the login in a legacy site, which uses old Azure AD, with Auth0.
I have the login working well, however the existing site has a function for users to create new users. To do that, I need to have the site API (ASP.NET Web API) access the Auth0 Management API to create and edit users.
I got that working, but only if I manually create a testing access token. I need to create a ne Management API Access Token every day. I have been stuck since yesterday at this stage. I have read every page of the documentation FWIW multiple times.
My API checks the age of the access token and, if it is too old, attempts to get a new one. I have registered an API in Auth0 with a corresponding application. I request the access token with the Client ID and Client Secret from the application and Audience from the API.
After working through error messages I have got to the stage of âMissing required parameter: refresh_tokenâ
How do I get a refresh token for a .NET based API? I canât find anything. Is there any method of getting new Management API Access Tokens without using a refresh token?
Thanks in advance,
Rob