I have read about the OAuth2 integration, but I could not find the grant_type=client_credential
parameter. I attempted to make a request using the grant_type
set to client_credential
grant_type:client_credentials
client_id:my_client_id
client_secret:my_client_secret
but I received an error.
{“error”: “unauthorized_client”}
Essentially, I am trying to establish a Machine-to-Machine integration without involving a user in the authentication process.