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:
32:7b9919d59194
Parent:
16:1f743885e7de
Child:
36:a5c13e512b78
--- a/data/HTTPText.h	Sat Jul 26 19:47:36 2014 +0000
+++ b/data/HTTPText.h	Sat Oct 11 17:26:04 2014 +0000
@@ -29,13 +29,13 @@
 {
 public:
   /** Create an HTTPText instance for output
-   * @param str String to be transmitted
+   * @param[in] str String to be transmitted
    */
   HTTPText(char* str);
 
   /** Create an HTTPText instance for input
-   * @param str Buffer to store the incoming string
-   * @param size Size of the buffer
+   * @param[in] str Buffer to store the incoming string
+   * @param[in] size Size of the buffer
    */
   HTTPText(char* str, size_t size);