Сеть
Last updated
Was this helpful?
Was this helpful?
str ftemp = TempDir() + `/readme.html`
int size = Download("https://github.com/gentee/gentee", ftemp) map empty
Println(HTTPRequest(TESTURL, "GET", empty, empty))
map params = { `name`: `Jong Doe`, `id`: `101` }
Println(HTTPRequest(TESTURL, "GET", params, empty))
Println(HTTPRequest(TESTURL, "POST", params, empty))
map headjson = { `Content-Type`: `application/json; charset=UTF-8` }
Println(HTTPRequest(TESTURL, "POST", params, headjson))