Interface for invoking Salesforce.com REST calls over SSL with OAUTH authentication. This interface is designed to simplify the interaction between mbed devices and salesforce.com web services.

Dependencies:   HTTPClient-SSL MbedJSONValue

Dependents:   StatusReporter

Revision:
22:3363752cd523
Parent:
21:e5a4471a46fb
--- a/SalesforceInterface.h	Fri Sep 26 03:42:20 2014 +0000
+++ b/SalesforceInterface.h	Fri Sep 26 04:34:33 2014 +0000
@@ -647,6 +647,9 @@
         // min() method
         int min(int value1,int value2);
         
+        // look for a specific key value pair in a json message
+        bool contains(char *json,char *key,char *value);
+        
         // initialize
         void init(HTTPClient *http,Logger *logger,bool logger_internal);
  };