Reputation: 99
I have a use case where we must pass username, password, grant_type, client_id, and client_secret via form-data in Azure Data Factory Web Activity. Concatenating keys and values in the request body returns the below error. I am using the POST method and below is the header information.
Upvotes: 0
Views: 1134
Reputation: 2729
Use post method in your web activity and provide your credentials under body.
grant_type=client_credentials&client_id={your client id}&client_secret={ client secret}&scope=API
Upvotes: 0