I'm trying to create a item to check an information in a API and I getting this error:
Cannot perform request: Unrecognized content encoding type. libcurl understands deflate, gzip, br content encodings.
When I do this same request with curl in my server i can get the correct response
My item is configured like this
Is there some way that can I fix this?
Cannot perform request: Unrecognized content encoding type. libcurl understands deflate, gzip, br content encodings.
When I do this same request with curl in my server i can get the correct response
Code:
curl 'http://my-api-server/path?param1=value¶m2=value' -H 'Content-Type: application/x-www-form-urlencoded' --user username:password
Is there some way that can I fix this?