x-www-form-urlencoded API
This api takes three params:
username // this is a text input
password. // this is a text input
json_input. //
the curl import is:
curl --location --request POST 'https://xxxxyy.com/abc/'
--header 'Content-Type: application/x-www-form-urlencoded'
--data-urlencode 'username=aabbccdd'
--data-urlencode 'password=ddeeffss'
--data-urlencode 'json_input=[
{Â // a big nested json object }
]
I'm not able to execute this API. I have already tried multiple ways like importing curl, etc but it is not working. The result I get isÂ
 {
headers: [],
result: false,
status: 0
}
However the same API when executed from postman works and gives the desired response.
How to execute this API in xano?
Working with APIs
2 replies