I'm creating a .Net Core web API which will further call an external API.
Scenario:
In .Net Core web API, I want to make a Post request to UiPath Orchestrator API to get authentication token. Following is the link for the Request that I want to make https://postman.uipath.rocks/#8f3b38d8-57dc-4d79-876d-0d2ff897f61a
[HttpPost]
public Task<IActionResult> GetAccessToken()
{
//Here I want to make a Post request to the API to Authenticate
}
And response (Auth token) of this will be sent to another post request to start a process https://postman.uipath.rocks/#738c3beb-1c19-4257-8474-841a054c4220
[HttpPost]
public Task<IActionResult> StartProcess(string token)
{
//Here I want to make a Post request to the other API in which token from the previous call will be
sent in header
}
I have to complete it in a day or two and I can't figure out how can I achieve this.
Any help will be much appreciated.
If I correctly understand you want to have an endpoint, which will make two
POST
requests to third-party API. The first request will retrieve an Authorization Token. The second request will use the Token in its Headers to pass an authorization.To achive this behavior, you should to have a single endpoint in your API, instead of two endpoints (as in your example above).
Also, I recommend you to have a separate class, which will responsible for communicating with your third-party API (with the
postman.uipath.rocks
).So, your single endpoint to call a third-party API may looks like this:
Your
IPostmanApi.cs
file may looks like this:Your
PostmanApi.cs
file may looks like this:Also don't forget to register your
IPostmanApi
service withinStartup.cs
:Notice:
HttpClient
is not thread safe). If you want it to be thread-safe, consider to useIHttpClientFactory
.Useful links: