Lines Matching refs:client

9 …* :cpp:func:`esp_http_client_init`: To use the HTTP client, the first thing we must do is create a…
11 …lled. It will close the connection (if any) and free up all the memory allocated to the HTTP client
39 if (!esp_http_client_is_chunked_response(evt->client)) {
58 esp_http_client_handle_t client = esp_http_client_init(&config);
59 esp_err_t err = esp_http_client_perform(client);
63 esp_http_client_get_status_code(client),
64 esp_http_client_get_content_length(client));
66 esp_http_client_cleanup(client);
72 Persistent connections means that the HTTP client can re-use the same connection for several transf…
74 To allow the HTTP client to take full advantage of persistent connections, you should do as many of…
87 esp_http_client_handle_t client = esp_http_client_init(&config);
89 err = esp_http_client_perform(client);
92 esp_http_client_set_url(client, "http://httpbin.org/anything")
93 esp_http_client_set_method(client, HTTP_METHOD_DELETE);
94 esp_http_client_set_header(client, "HeaderKey", "HeaderValue");
95 err = esp_http_client_perform(client);
97 esp_http_client_cleanup(client);
103 The HTTP client supports SSL connections using **mbedtls**, with the **url** configuration starting…
120 esp_http_client_handle_t client = esp_http_client_init(&config);
121 esp_err_t err = esp_http_client_perform(client);
125 esp_http_client_get_status_code(client),
126 esp_http_client_get_content_length(client));
128 esp_http_client_cleanup(client);
134 …ection and control the reading of the data in an active manner. the HTTP client supports some func…
154client supports both **Basic** and **Digest** Authentication. By providing usernames and passwords…