Dear Community
I am having an issue using OAuth2 Authenticator (Client Credentials) to retrieve a token from by provider.
The provider-specified server details are as follows (obfuscated):
• Resource URL: https://token_provider.com/v2/token
• HTTP Method: POST
• Content-Type: application/x-www-form-urlencoded
• Response Format: JSON
The curl command works fine:
curl -d “grant_type=client_credentials” -d “client_id=AAAA” -d “client_secret=BBBB” -d “scope=this_scope” https://token_provider.com/v2/token
As does postman when I specify body request parameters:
However, when I try use a OAuth2 Authenticator (Client Credentials) node (below), I get
“Execute failed: Could not retrieve access token (unsupported_grant_type - no message provided” .
Postman failed when I used query params and only worked using body key-value pairs. So I am wondering how to do the same thing using the KNIME node.
Cheers

