Fixed custom headers and Basic authorization, added support for redirection, functional file download interface can be used for SW updates and more.

Dependents:   Sample_HTTPClient Sample_HTTPClient LWM2M_NanoService_Ethernet LWM2M_NanoService_Ethernet ... more

Fork of HTTPClient by Vincent Wochnik

More recent changes - added iCal processing.

Derivative of a derivative, however this one works when it comes to supplying Basic authorization to access a protected resource. Some additional changes to the debug interface to clean it up for consistency with many other components I have.

Revision:
49:c5abb7ae070b
Parent:
47:677677ac6443
--- a/HTTPClient.cpp	Wed Apr 03 22:00:31 2019 +0000
+++ b/HTTPClient.cpp	Sun Jul 14 01:42:33 2019 +0000
@@ -588,7 +588,7 @@
     return HTTP_OK;
 }
 
-HTTPResult HTTPClient::send(const char* buf, size_t len) //0 on success, err code on failure
+HTTPResult HTTPClient::send(char* buf, size_t len) //0 on success, err code on failure
 {
     if(len == 0) {
         len = strlen(buf);