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:
21:d33f7e1ce811
Parent:
20:4ea5255c1b04
Child:
23:517fec8b8b99
--- a/HTTPClient.h	Sun Feb 02 16:47:06 2014 +0000
+++ b/HTTPClient.h	Sun Feb 09 22:25:28 2014 +0000
@@ -168,8 +168,8 @@
 
     int m_timeout;
 
-    const char* m_basicAuthUser;
-    const char* m_basicAuthPassword;
+    char* m_basicAuthUser;
+    char* m_basicAuthPassword;
     const char** m_customHeaders;
     size_t m_nCustomHeaders;
     int m_httpResponseCode;