Description of your new file.
grant_type=client_credentials
: Specifies the OAuth2 grant type being used.client_id=YOUR_CLIENT_ID
: The unique identifier for the client generated during the client creation process.client_secret=YOUR_CLIENT_SECRET
: The secret key associated with the client ID. The key should be stored securely, ideally using Drupal’s Key module.Authorization: Bearer YOUR_ACCESS_TOKEN
: The access token obtained in the previous step is included in the Authorization
header with the Bearer
scheme.Opigno-Client-UUID: 123a456a-123b-123c-123d-************
: This custom header specifies the UUID of the user on whose behalf the action is being performed. The backoffice verifies if the authenticated client has permission to act on this UUID.