$http->set_base_url(array $headers)
Появилось в версии: 6.3
Задает заголовки для каждого HTTP запроса.
Параметр | Описание | Обязательный |
---|---|---|
$headers | заголовки | да |
/**
* @param array $headers
*/
public function set_headers(array $headers)
try {
$http = nc_Core::get_object()->http;
$http->set_headers(array("Charset" => "utf-8"));
$http->make_post_request("https://some-rest.ru/users", array("login" => "user_1"));
} catch (nc_http_exception $e) {
}