Is it possible to interact with a REST API, while using the grant type of "client_credentials", starting with a ClientID and ClientSecret to generate a BEARER Token, but NOT going through the user-generated flow for authorization_code the grant type - to me the available Authentication configuration settings don't allow for anything but flows that include user redirection to an authentication UI.
For example - this is impossible to achieve based on my tesing:
curl --request POST 'https://auth.xxyyyzzz.com/oauth/v2/token'
--header 'Content-Type: multipart/form-data'
--form 'client_id="<CLIENT_ID_HERE>"'
--form 'client_secret="<CLIENT_SECRET_HERE>"'
--form 'grant_type="client_credentials"'
--form 'scope="gpt.actions"'
I've come across similar reports across developer support forums and blogs, but have not seen a working solution for "client_credentials" flows.
Thanks in advance bot!