The POST request is working fine in Postman but is generating an error in the web activity of ADF. No parameters are being passed, and the Authorization setting is "Inherit auth from parent." Please find the more details of Postman in screenshots below.
Following the same approach in the web activity of ADF, but every time I get the below error:
I am trying the following approach too for the Web activity:
Please, someone guide me on this. What am I missing here? The error itself says "user configuration issue." I have tried everything and experimented in various ways but am still stuck.
For Content-Type as application/x-www-form-urlencoded
you need to give the body in below format.
name=test&salary=123&age=23
I can see you giving query
value a json body and postman got the response.
So, you body should be like this
query={"name":"jai","salary":"123","age":"23"}
or
key value pair joined with equal sign(=
) and each pair separated by ampersand(&
).
Input:
Output: