I’m testing a data import to Zoho Analytics using Feed/XML data fetch from an URL with https.
I have tested successfully the following request with CURL command line, it gives the XML response, given that I had CA certificate installed on my local Windows. There is no other explicit authentication method required.
curl --cacert ca-bundle.crt -X POST -d dataname=xxxx -d key=xxxx -d token=xxxx -d table=orders -d column=closed -d value_min=2020-02-19%2000:00:00 -d value_max=2020-02-19%2023:59:59 -d limit=0,10 https://api.xxxx.com/xxxx/
If I didn’t include/install CA certificate manually, it returns empty
response, but status is OK (200).
In Zoho Analytics, I setup similarly with all the required parameters. But when I continue (Next button), it gives error as like a request without certificate attached. See attachment.
How to configure Zoho Analytics for secure request without any explicit authentication?
And in the end how to make this work (returning results) in Zoho Analytics?