Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Objective-C) 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
#import <CkoHttp.h> #import <CkoHttpRequest.h> #import <CkoHttpResponse.h> #import <CkoStringBuilder.h> #import <CkoJsonObject.h> #import <CkoDtObj.h> #import <NSString.h> // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkoHttp *http = [[CkoHttp alloc] init]; 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.Login = @"TWILIO_ACCOUNT_SID"; http.Password = @"TWILIO_AUTH_TOKEN"; CkoHttpRequest *req = [[CkoHttpRequest alloc] init]; req.HttpVerb = @"POST"; req.Path = @"/2010-04-01/Accounts/TWILIO_ACCOUNT_SID/Messages.json"; req.ContentType = @"application/x-www-form-urlencoded"; [req AddParam: @"From" value: @"+15005550006"]; [req AddParam: @"Body" value: @"body"]; [req AddParam: @"To" value: @"+15005551212"]; [req AddParam: @"MediaUrl" value: @"https://www.chilkatsoft.com/images/starfish.jpg"]; CkoHttpResponse *resp = [http PostUrlEncoded: @"https://api.twilio.com/2010-04-01/Accounts/TWILIO_ACCOUNT_SID/Messages.json" req: req]; if (http.LastMethodSuccess == NO) { NSLog(@"%@",http.LastErrorText); return; } CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init]; [resp GetBodySb: sbResponseBody]; CkoJsonObject *jResp = [[CkoJsonObject alloc] init]; [jResp LoadSb: sbResponseBody]; jResp.EmitCompact = NO; NSLog(@"%@",@"Response Body:"); NSLog(@"%@",[jResp Emit]); // A 201 status code indicates success. int respStatusCode = [resp.StatusCode intValue]; NSLog(@"%@%d",@"Response Status Code = ",respStatusCode); if (respStatusCode >= 400) { NSLog(@"%@",@"Response Header:"); NSLog(@"%@",resp.Header); NSLog(@"%@",@"Failed."); return; } // 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 CkoDtObj *date_created = [[CkoDtObj alloc] init]; CkoDtObj *date_updated = [[CkoDtObj alloc] init]; CkoDtObj *date_sent = [[CkoDtObj alloc] init]; NSString *sid = [jResp StringOf: @"sid"]; [jResp DtOf: @"date_created" bLocal: NO dt: date_created]; [jResp DtOf: @"date_updated" bLocal: NO dt: date_updated]; [jResp DtOf: @"date_sent" bLocal: NO dt: date_sent]; NSString *account_sid = [jResp StringOf: @"account_sid"]; NSString *v_to = [jResp StringOf: @"to"]; NSString *from = [jResp StringOf: @"from"]; NSString *messaging_service_sid = [jResp StringOf: @"messaging_service_sid"]; NSString *body = [jResp StringOf: @"body"]; NSString *status = [jResp StringOf: @"status"]; NSString *num_segments = [jResp StringOf: @"num_segments"]; NSString *num_media = [jResp StringOf: @"num_media"]; NSString *direction = [jResp StringOf: @"direction"]; NSString *api_version = [jResp StringOf: @"api_version"]; NSString *price = [jResp StringOf: @"price"]; NSString *price_unit = [jResp StringOf: @"price_unit"]; NSString *error_code = [jResp StringOf: @"error_code"]; NSString *error_message = [jResp StringOf: @"error_message"]; NSString *uri = [jResp StringOf: @"uri"]; NSString *subresource_urisMedia = [jResp StringOf: @"subresource_uris.media"]; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.