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:
Wed Oct 28 18:11:12 2015 +0000
Revision:
53:fa91a40cecb5
Parent:
37:29941a3bae90
updates to augment header information

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 37:29941a3bae90 1 /* HTTPJson.cpp */
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 #include "HTTPFormEncoded.h"
ansond 37:29941a3bae90 21
ansond 37:29941a3bae90 22 #define OK 0
ansond 37:29941a3bae90 23
ansond 37:29941a3bae90 24 using std::strncpy;
ansond 37:29941a3bae90 25
ansond 37:29941a3bae90 26 HTTPFormEncoded::HTTPFormEncoded(char* json_str) : HTTPText(json_str)
ansond 37:29941a3bae90 27 {
ansond 37:29941a3bae90 28
ansond 37:29941a3bae90 29 }
ansond 37:29941a3bae90 30
ansond 37:29941a3bae90 31 HTTPFormEncoded::HTTPFormEncoded(char* json_str, size_t size) : HTTPText(json_str,size)
ansond 37:29941a3bae90 32 {
ansond 37:29941a3bae90 33
ansond 37:29941a3bae90 34 }
ansond 37:29941a3bae90 35
ansond 37:29941a3bae90 36 /*virtual*/ int HTTPFormEncoded::getDataType(char* type, size_t maxTypeLen) //Internet media type for Content-Type header
ansond 37:29941a3bae90 37 {
ansond 37:29941a3bae90 38 strncpy(type, "application/x-www-form-urlencoded", maxTypeLen-1);
ansond 37:29941a3bae90 39 type[maxTypeLen-1] = '\0';
ansond 37:29941a3bae90 40 return OK;
ansond 37:29941a3bae90 41 }