You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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 withvar 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.
The text was updated successfully, but these errors were encountered: