Hi
For some reason I can’t get the following API to work with thunkable:
I don’t understand how I need to set the parameters correctly.
I tried the following setup:
URL: `https://faceanalyzer-ai.p.rapidapi.com/faceanalysis`
Headers:
* Property: `X-RapidAPI-Host`, Value: `faceanalyzer-ai.p.rapidapi.com`
* Property: `X-RapidAPI-Key`, Value: 'myAPIKey`
* Property: `content-type`, Value: `application/x-www-form-urlencoded`
Body:
* String: `url=linkToAPictureImTryingToGetTheEmotionsOutOf`
I only get a 404 back and don’t really understand what I need to change. Here is the recommended shell call from RapidAPI for reference:
curl --request POST \
--url https://faceanalyzer-ai.p.rapidapi.com/faceanalysis \
--header 'X-RapidAPI-Host: faceanalyzer-ai.p.rapidapi.com' \
--header 'X-RapidAPI-Key: 'myKey' \
--header 'content-type: application/x-www-form-urlencoded' \
--data url=https://picturelink.png
Thanks for the help, really appreciate anything.