I’ve been trying to set up data connections for esi.evetech.net for use in my app. The GET connections work well, but I can’t get seem to get a POST request to go through. I beleive the issue is the format of the data in the body but I’m not 100% sure on that.
This is what I’m trying to do: curl -X POST “https://esi.evetech.net/latest/universe/ids/?datasource=tranquility&language=en” -H “accept: application/json” -H “Accept-Language: en” -H “Content-Type: application/json” -H “Cache-Control: no-cache” -d “[ "CCP Zoetrope"]”
This is what my configuration looks like:
What am I doing wrong??