Hey, I can see that this was discussed already in the past, but I'm afraid POST is still not supported.
Even when passing an options document { method: 'POST' }, the query is still built with var url = endpoint + '?query=' + encodeURIComponent(query)such that parameters are still passed on the URL of the endpoint whereas they should be passed in the body of the HTTP request.
Am I missing something?
Thx.