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