Я выполняю этот код в Flask python по запросу. API с этими параметрами:
payload = {'key':'pass', 'schema':'sch', 'table':'tab','where_clause':'0', 'liste_fields':'*}
r = requests.get('https://api.com/', params=payload, verify=False)
Как выполнить тот же URL-адрес get в Ajax?
$.ajax({
url: "https://api.com/",
type: "POST",
data: ?,
dataType: "json",
success: function (result) {
alert(result);
},
error: function (xhr, textStatus, errorThrown) {
}