In function static esp_err_t esp_http_check_response(esp_http_client_handle_t client):
Code: Select all
if (client->redirect_counter >= client->max_redirection_count || client->disable_auto_redirect) {
ESP_LOGE(TAG, "Error, reach max_redirection_count count=%d", client->redirect_counter);
return ESP_ERR_HTTP_MAX_REDIRECT;
}
Could anyone tell me is this a bug or did I lost something?