want to pass input value of client_id parameter dynamically to oauth properties of client id
{
"oauth": {
"client_id": "{{setting.client_id}}",
"client_secret": "{{setting.client_secret}}",
"scope": "public_profile,email,pages_messaging,pages_read_engagement"
},
"parameters": [
{
"name": "token",
"type": "oauth"
},
{
"name": "client_id",
"type": "text",
"required": true
},
{
"name": "client_secret",
"type": "text",
"required": true
}
]
}
I am getting an upload error:
Upload Error
The task failed because of an error: 422 Unprocessable Entity: {"errors"=>[{"status"=>"422", "code"=>"1307", "detail"=>"client id: '{{setting.client_id}}' is invalid. Only lowercase/uppercase letters, number, -, _, = and . are allowed"}]}
At this time we don't allow for the client_id to be set as a dynamic field. Though, I've passed this along to the appropriate team as a feature request.