| Name |
Type |
Description |
| url |
string |
URL link |
| Name |
Type |
Description |
| content |
string |
Content of provided URL |
local google_content = Http.Get("https://google.com")
| Name |
Type |
Description |
| url |
string |
URL link |
| params |
string |
POST Parameters |
| Name |
Type |
Description |
| content |
string |
Content of provided URL |
local google_content = Http.Post("https://google.com", "somedata=somevalue")
| Name |
Type |
Description |
| url |
string |
URL link |
| callback |
function |
- |
| Name |
Type |
Description |
| content |
string |
Content of provided URL |
Http.GetAsync("https://google.com", function(url_content)
print(url_content)
end)
| Name |
Type |
Description |
| url |
string |
URL link |
| params |
string |
POST Parameters |
| callback |
function |
- |
| Name |
Type |
Description |
| content |
string |
Content of provided URL |
Http.PostAsync("https://google.com", "somedata=somevalue", function(url_content)
print(url_content)
end)