Fork of the working HTTPClient adaptation using CyaSSL. This version adds a derivation of HTTPText called HTTPJson to emit JSON text properly. Additionally, the URL parser has defines that permit longer URLs to be utilized.

Dependencies:   mbedTLSLibrary

Dependents:   SalesforceInterface df-2014-heroku-thermostat-k64f SalesforceInterface

Fork of HTTPClient by wolf SSL

This is a fork of the working HTTPS/SSL library that contains two extensions:

- HTTPJson - a derivation of HTTPText for emitting JSON strings specifically. No JSON parsing/checking is accomplished - HTTPJson simply sets the right Content-Type for HTTP(S).

- Expanded internal buffers for longer URLs. This is set in HTTPClient.cpp and is tunable.

Committer:
ansond
Date:
Thu Sep 18 03:21:13 2014 +0000
Revision:
37:29941a3bae90
updates including the addition of oauth headers support

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 37:29941a3bae90 1 /* HTTPJson.h */
ansond 37:29941a3bae90 2 /* Copyright (C) 2012 mbed.org, MIT License
ansond 37:29941a3bae90 3 *
ansond 37:29941a3bae90 4 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 37:29941a3bae90 5 * and associated documentation files (the "Software"), to deal in the Software without restriction,
ansond 37:29941a3bae90 6 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 37:29941a3bae90 7 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 37:29941a3bae90 8 * furnished to do so, subject to the following conditions:
ansond 37:29941a3bae90 9 *
ansond 37:29941a3bae90 10 * The above copyright notice and this permission notice shall be included in all copies or
ansond 37:29941a3bae90 11 * substantial portions of the Software.
ansond 37:29941a3bae90 12 *
ansond 37:29941a3bae90 13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 37:29941a3bae90 14 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 37:29941a3bae90 15 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 37:29941a3bae90 16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 37:29941a3bae90 17 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 37:29941a3bae90 18 */
ansond 37:29941a3bae90 19
ansond 37:29941a3bae90 20
ansond 37:29941a3bae90 21 #ifndef HTTP_FORM_ENCODED_H_
ansond 37:29941a3bae90 22 #define HTTP_FORM_ENCODED_H_
ansond 37:29941a3bae90 23
ansond 37:29941a3bae90 24 #include "HTTPText.h"
ansond 37:29941a3bae90 25
ansond 37:29941a3bae90 26 /** A data endpoint to store application/x-www-form-urlencoded text
ansond 37:29941a3bae90 27 */
ansond 37:29941a3bae90 28 class HTTPFormEncoded : public HTTPText
ansond 37:29941a3bae90 29 {
ansond 37:29941a3bae90 30 public:
ansond 37:29941a3bae90 31 /** Create an HTTPJson instance for output
ansond 37:29941a3bae90 32 * @param json_str JSON string to be transmitted
ansond 37:29941a3bae90 33 */
ansond 37:29941a3bae90 34 HTTPFormEncoded(char* json_str);
ansond 37:29941a3bae90 35
ansond 37:29941a3bae90 36 /** Create an HTTPText instance for input
ansond 37:29941a3bae90 37 * @param json_str Buffer to store the incoming JSON string
ansond 37:29941a3bae90 38 * @param size Size of the buffer
ansond 37:29941a3bae90 39 */
ansond 37:29941a3bae90 40 HTTPFormEncoded(char* json_str, size_t size);
ansond 37:29941a3bae90 41
ansond 37:29941a3bae90 42 protected:
ansond 37:29941a3bae90 43 virtual int getDataType(char* type, size_t maxTypeLen); //Internet media type for Content-Type header
ansond 37:29941a3bae90 44 };
ansond 37:29941a3bae90 45
ansond 37:29941a3bae90 46 #endif /* HTTP_FORM_ENCODED_H_ */