Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Twilio Send MMS (using Chilkat HTTP)Send an outgoing MMS message. The only difference with MMS (as compared with SMS) is that a MediaUrl parameter is added to the POST. This means your image must be accessible on the web -- the Twilio server must be able to download the image from the URL you provide to include it in the MMS mesage to be sent. Also, see Twilio MMS for more information about MMS. For more information, see https://support.twilio.com/hc/en-us/articles/223179808-Sending-and-receiving-MMS-messages
#include <CkHttp.h> #include <CkHttpRequest.h> #include <CkHttpResponse.h> #include <CkStringBuilder.h> #include <CkJsonObject.h> #include <CkDtObj.h> void ChilkatSample(void) { CkString strOut; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkHttp http; bool success; // Implements the following CURL command: // (See information about using test credentials and phone numbers: https://www.twilio.com/docs/iam/test-credentials) // curl -X POST https://api.twilio.com/2010-04-01/Accounts/TWILIO_ACCOUNT_SID/Messages.json \ // --data-urlencode "From=+15005550006" \ // --data-urlencode "Body=body" \ // --data-urlencode "To=+15005551212" \ // -u TWILIO_ACCOUNT_SID:TWILIO_AUTH_TOKEN // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code http.put_Login("TWILIO_ACCOUNT_SID"); http.put_Password("TWILIO_AUTH_TOKEN"); CkHttpRequest req; req.put_HttpVerb("POST"); req.put_Path("/2010-04-01/Accounts/TWILIO_ACCOUNT_SID/Messages.json"); req.put_ContentType("application/x-www-form-urlencoded"); req.AddParam("From","+15005550006"); req.AddParam("Body","body"); req.AddParam("To","+15005551212"); req.AddParam("MediaUrl","https://www.chilkatsoft.com/images/starfish.jpg"); CkHttpResponse *resp = http.PostUrlEncoded("https://api.twilio.com/2010-04-01/Accounts/TWILIO_ACCOUNT_SID/Messages.json",req); if (http.get_LastMethodSuccess() == false) { strOut.append(http.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } CkStringBuilder sbResponseBody; resp->GetBodySb(sbResponseBody); CkJsonObject jResp; jResp.LoadSb(sbResponseBody); jResp.put_EmitCompact(false); strOut.append("Response Body:"); strOut.append("\r\n"); strOut.append(jResp.emit()); strOut.append("\r\n"); // A 201 status code indicates success. int respStatusCode = resp->get_StatusCode(); strOut.append("Response Status Code = "); strOut.appendInt(respStatusCode); strOut.append("\r\n"); if (respStatusCode >= 400) { strOut.append("Response Header:"); strOut.append("\r\n"); strOut.append(resp->header()); strOut.append("\r\n"); strOut.append("Failed."); strOut.append("\r\n"); delete resp; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } delete resp; // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "sid": "SM477111c301794f14b11eca5eefd5c350", // "date_created": "Tue, 18 Aug 2020 15:04:47 +0000", // "date_updated": "Tue, 18 Aug 2020 15:04:47 +0000", // "date_sent": null, // "account_sid": "AC2e9b6bc0f51133df24926f07341d3824", // "to": "+15005551212", // "from": "+15005550006", // "messaging_service_sid": null, // "body": "body", // "status": "queued", // "num_segments": "1", // "num_media": "0", // "direction": "outbound-api", // "api_version": "2010-04-01", // "price": null, // "price_unit": "USD", // "error_code": null, // "error_message": null, // "uri": "/2010-04-01/Accounts/AC2e9b6bc0f51133df24926f07341d3824/Messages/SM477111c301794f14b11eca5eefd5c350.json", // "subresource_uris": { // "media": "/2010-04-01/Accounts/AC2e9b6bc0f51133df24926f07341d3824/Messages/SM477111c301794f14b11eca5eefd5c350/Media.json" // } // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON CkDtObj date_created; CkDtObj date_updated; CkDtObj date_sent; const char *sid = jResp.stringOf("sid"); jResp.DtOf("date_created",false,date_created); jResp.DtOf("date_updated",false,date_updated); jResp.DtOf("date_sent",false,date_sent); const char *account_sid = jResp.stringOf("account_sid"); const char *v_to = jResp.stringOf("to"); const char *from = jResp.stringOf("from"); const char *messaging_service_sid = jResp.stringOf("messaging_service_sid"); const char *body = jResp.stringOf("body"); const char *status = jResp.stringOf("status"); const char *num_segments = jResp.stringOf("num_segments"); const char *num_media = jResp.stringOf("num_media"); const char *direction = jResp.stringOf("direction"); const char *api_version = jResp.stringOf("api_version"); const char *price = jResp.stringOf("price"); const char *price_unit = jResp.stringOf("price_unit"); const char *error_code = jResp.stringOf("error_code"); const char *error_message = jResp.stringOf("error_message"); const char *uri = jResp.stringOf("uri"); const char *subresource_urisMedia = jResp.stringOf("subresource_uris.media"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.