I want to use custom auth credentials to hide the currently hard coded credentials in my http node.
The problem is, once I transfer the body parameters to the custom credential. The request stops working and returns 400. I am confused.
This works:
but this does not:
yes i have tried toggling “send body” and also (with send body enabled) having empty fields.
Custom Credential:
{
“body”: {
“client_id”: “our_client_id”,
“client_secret”: “our_client_secret”,
“grant_type”: “client_credentials”,
“scope”: “https://api.botframework.com/.default”
}
}