diff --git a/doc/en/scripting/builtins/libnetwork.md b/doc/en/scripting/builtins/libnetwork.md index cb24e7bf..a93eaefa 100644 --- a/doc/en/scripting/builtins/libnetwork.md +++ b/doc/en/scripting/builtins/libnetwork.md @@ -7,7 +7,8 @@ A library for working with the network. ```lua -- Performs a GET request to the specified URL. -- After receiving the response, passes the text to the callback function. -network.get(url: str, callback: function(str)) +-- In case of an error, the HTTP response code will be passed to onfailure. +network.get(url: str, callback: function(str), [optional] onfailure: function(int)) -- Example: network.get("https://api.github.com/repos/MihailRis/VoxelEngine-Cpp/releases/latest", function (s) @@ -15,12 +16,13 @@ network.get("https://api.github.com/repos/MihailRis/VoxelEngine-Cpp/releases/lat end) -- A variant for binary files, with a byte array instead of a string in the response. -network.get_binary(url: str, callback: function(table|ByteArray)) +network.get_binary(url: str, callback: function(table|ByteArray), [optional] onfailure: function(int)) -- Performs a POST request to the specified URL. -- Currently, only `Content-Type: application/json` is supported -- After receiving the response, passes the text to the callback function. -network.post(url: str, data: table, callback: function(str)) +-- In case of an error, the HTTP response code will be passed to onfailure. +network.post(url: str, data: table, callback: function(str), [optional] onfailure: function(int)) ``` ## TCP Connections diff --git a/doc/ru/scripting/builtins/libnetwork.md b/doc/ru/scripting/builtins/libnetwork.md index 657ad7cf..0d33acf1 100644 --- a/doc/ru/scripting/builtins/libnetwork.md +++ b/doc/ru/scripting/builtins/libnetwork.md @@ -7,7 +7,8 @@ ```lua -- Выполняет GET запрос к указанному URL. -- После получения ответа, передаёт текст в функцию callback. -network.get(url: str, callback: function(str)) +-- В случае ошибки в onfailure будет передан HTTP-код ответа. +network.get(url: str, callback: function(str), [опционально] onfailure: function(int)) -- Пример: network.get("https://api.github.com/repos/MihailRis/VoxelEngine-Cpp/releases/latest", function (s) @@ -15,12 +16,13 @@ network.get("https://api.github.com/repos/MihailRis/VoxelEngine-Cpp/releases/lat end) -- Вариант для двоичных файлов, с массивом байт вместо строки в ответе. -network.get_binary(url: str, callback: function(table|ByteArray)) +network.get_binary(url: str, callback: function(table|ByteArray), [опционально] onfailure: function(int)) -- Выполняет POST запрос к указанному URL. -- На данный момент реализована поддержка только `Content-Type: application/json` -- После получения ответа, передаёт текст в функцию callback. -network.post(url: str, data: table, callback: function(str)) +-- В случае ошибки в onfailure будет передан HTTP-код ответа. +network.post(url: str, data: table, callback: function(str), [опционально] onfailure: function(int)) ``` ## TCP-Соединения