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
Luckshya edited this page Mar 23, 2020
·
3 revisions
Example code for squirrel script
local request = ::SqHTTP.GetRequest();
request.setURL("url here");
request.setTag("tag here");
request.sendGet();
// Event callbackfunctionHTTP_OnResponse(tag, url, statusCode, response)
{
print("Data received for request with tag "+ tag);
}