Good afternoon,
I have been put onto a project to create a new Azure Logic App that will connect to an API, download data and put it into a flat file or database.
The company that is going to be creating the API has not finished it yet so at the moment I am trying out some things to see how hard stuff is going to be to set up. I’ve been told that the API will be using OAuth (ClientID & Secret) and my assumption is that it will use Server to Server auth.
For the proof of concept I have set up an Auth0 server and am really pleased I was able to get an access token earlier today!
However the second part I am a bit stuck on.
The instructions I have been given from auth0 are to put in a path to my API
Can I can create a mock API using auth0 for this step?
curl --request GET
–url http://path_to_your_api/
–header ‘authorization: Bearer redacted’
Thank you in advance
LeftBlank