Credentials used in bundle service configuration #408
-
If I have a bundle service config like this: services:
OR services: I needed help to understand how oauth2 token generated or the bearer token created is passed to the BUNDLE_SERVICE_URL or |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The bearer token retrieved from a successful
|
Beta Was this translation helpful? Give feedback.
The bearer token retrieved from a successful
client_credentials
autentication is put in theAuthorization
header of the outgoing request, as per the OAuth2 specification.token_url
with the provided client credentials (client_id
andclient_secret
).Authorization
header in the request to fetch a bundle.