Authenticate a service to a service
To successfully authenticate a service (server side) to connect (as a service client) to another service protected by an access token, you will need to implement OAuth this way.
The access token got from the IdP to check access to the service, is also required to access the
client service.
- Call the
InitService()
function to initiate OAuth and to register the access token. - Then you can call any of the OAuthAPI methods, such as
CreateHTTPAuthorizationRequest
, to perform requests to the other service.
See the code sample in InitService().