-
Autor
Hi,
I was hoping to make a PATCH http call to interact with my mikrotik router's config but it turns out I get this response "method': Method is wrong or not supported!"
Code
Shelly.call(
"HTTP.REQUEST",
{
method: "PATCH",
url: baseUrl + "/" + id,
ssl_ca: "*",
body: body,
headers: headers
},
function (res, error_code, error_message) {
print(res);
},
null
);
Alles anzeigen
Is there any hope to get that supported in a coming firmware update ?
Thanks