network/http_methods/http_head.c

/*******************************************************************************
* # License
* Copyright 2019 Silicon Laboratories Inc. www.silabs.com
*******************************************************************************
*
* The licensor of this software is Silicon Laboratories Inc. Your use of this
* software is governed by the terms of Silicon Labs Master Software License
* Agreement (MSLA) available at
* www.silabs.com/about-us/legal/master-software-license-agreement. This
* software is distributed to you in Source Code format and is governed by the
* sections of the MSLA applicable to Source Code.
*
******************************************************************************/
#include "common.h"
/*************************************************************************************************/
void http_head_example(void)
{
GOS_LOG("\r\n");
GOS_LOG("Running HTTP: HEAD %s", bin_url);
gos_result_t result;
gos_handle_t handle;
{
.method = GOS_HTTP_HEAD,
.url = bin_url,
};
GOS_LOG("Issuing request ... ");
if (GOS_FAILED(result, gos_http_open_request(&request, &handle)))
{
GOS_LOG("Request failed: %d", result);
return;
}
GOS_LOG("Adding custom header ... ");
if (GOS_FAILED(result, gos_http_add_header(handle, "x-my-custom-header", "custom_header_data")))
{
GOS_LOG("Failed to add header: %d", result);
return;
}
GOS_LOG("Receiving response ... ");
if (GOS_FAILED(result, gos_http_receive_response(handle, &response)))
{
GOS_LOG("Response failed: %d", result);
return;
}
GOS_LOG("Response code: %d", response.code);
gos_http_close(handle);
GOS_LOG("Success\r\n");
}