CURL *handle;
struct curl_slist *slist=NULL;
slist = curl_slist_append(slist, "X-libcurl: coolness");
slist = curl_slist_append(slist, "Authorization: Bearer retrffhj");
curl_slist_free_all(slist); /* clears all header list */
How can I clear the header with key Authorization and rest header information should be retained as it is.