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
(Xojo Plugin) MessageMedia - Send MessagesSee more MessageMedia ExamplesSubmit one or more (up to 100 per request) SMS, MMS, or text to voice messages for delivery. For more information, see https://support.messagemedia.com/hc/en-us/articles/4413635760527-Messaging-API
// This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Dim http As New Chilkat.Http Dim success As Boolean // Implements the following CURL command: // curl --request POST \ // --header "Content-Type: application/json" \ // --header "Accept: application/json" \ // --data-binary "{ // \"messages\": [ // { // \"callback_url\": \"https://my.callback.url.com\", // \"content\": \"My first message\", // \"destination_number\": \"+61491570156\", // \"delivery_report\": true, // \"format\": \"SMS\", // \"message_expiry_timestamp\": \"2016-11-03T11:49:02.807Z\", // \"metadata\": { // \"myKey\": \"myValue\", // \"anotherKey\": \"anotherValue\" // }, // \"scheduled\": \"2016-11-03T11:49:02.807Z\", // \"source_number\": \"+61491570157\", // \"source_number_type\": \"INTERNATIONAL\" // }, // { // \"callback_url\": \"https://my.callback.url.com\", // \"content\": \"My second message\", // \"destination_number\": \"+61491570158\", // \"delivery_report\": true, // \"format\": \"MMS\", // \"subject\": \"This is an MMS message\", // \"media\": [ \"https://images.pexels.com/photos/1018350/pexels-photo-1018350.jpeg?cs=srgb&dl=architecture-buildings-city-1018350.jpg\" ], // \"message_expiry_timestamp\": \"2016-11-03T11:49:02.807Z\", // \"metadata\": { // \"myKey\": \"myValue\", // \"anotherKey\": \"anotherValue\" // }, // \"scheduled\": \"2016-11-03T11:49:02.807Z\", // \"source_number\": \"+61491570159\", // \"source_number_type\": \"INTERNATIONAL\" // } // ] // }" \ // https://private-anon-ecbaffbc28-messages32.apiary-mock.com/v1/messages // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON // The following JSON is sent in the request body. // { // "messages": [ // { // "callback_url": "https://my.callback.url.com", // "content": "My first message", // "destination_number": "+61491570156", // "delivery_report": true, // "format": "SMS", // "message_expiry_timestamp": "2016-11-03T11:49:02.807Z", // "metadata": { // "myKey": "myValue", // "anotherKey": "anotherValue" // }, // "scheduled": "2016-11-03T11:49:02.807Z", // "source_number": "+61491570157", // "source_number_type": "INTERNATIONAL" // }, // { // "callback_url": "https://my.callback.url.com", // "content": "My second message", // "destination_number": "+61491570158", // "delivery_report": true, // "format": "MMS", // "subject": "This is an MMS message", // "media": [ // "https://images.pexels.com/photos/1018350/pexels-photo-1018350.jpeg?cs=srgb&dl=architecture-buildings-city-1018350.jpg" // ], // "message_expiry_timestamp": "2016-11-03T11:49:02.807Z", // "metadata": { // "myKey": "myValue", // "anotherKey": "anotherValue" // }, // "scheduled": "2016-11-03T11:49:02.807Z", // "source_number": "+61491570159", // "source_number_type": "INTERNATIONAL" // } // ] // } Dim json As New Chilkat.JsonObject success = json.UpdateString("messages[0].callback_url","https://my.callback.url.com") success = json.UpdateString("messages[0].content","My first message") success = json.UpdateString("messages[0].destination_number","+61491570156") success = json.UpdateBool("messages[0].delivery_report",True) success = json.UpdateString("messages[0].format","SMS") success = json.UpdateString("messages[0].message_expiry_timestamp","2016-11-03T11:49:02.807Z") success = json.UpdateString("messages[0].metadata.myKey","myValue") success = json.UpdateString("messages[0].metadata.anotherKey","anotherValue") success = json.UpdateString("messages[0].scheduled","2016-11-03T11:49:02.807Z") success = json.UpdateString("messages[0].source_number","+61491570157") success = json.UpdateString("messages[0].source_number_type","INTERNATIONAL") success = json.UpdateString("messages[1].callback_url","https://my.callback.url.com") success = json.UpdateString("messages[1].content","My second message") success = json.UpdateString("messages[1].destination_number","+61491570158") success = json.UpdateBool("messages[1].delivery_report",True) success = json.UpdateString("messages[1].format","MMS") success = json.UpdateString("messages[1].subject","This is an MMS message") success = json.UpdateString("messages[1].media[0]","https://images.pexels.com/photos/1018350/pexels-photo-1018350.jpeg?cs=srgb&dl=architecture-buildings-city-1018350.jpg") success = json.UpdateString("messages[1].message_expiry_timestamp","2016-11-03T11:49:02.807Z") success = json.UpdateString("messages[1].metadata.myKey","myValue") success = json.UpdateString("messages[1].metadata.anotherKey","anotherValue") success = json.UpdateString("messages[1].scheduled","2016-11-03T11:49:02.807Z") success = json.UpdateString("messages[1].source_number","+61491570159") success = json.UpdateString("messages[1].source_number_type","INTERNATIONAL") http.SetRequestHeader "Content-Type","application/json" http.SetRequestHeader "Accept","application/json" Dim resp As Chilkat.HttpResponse resp = http.PostJson3("https://private-anon-ecbaffbc28-messages32.apiary-mock.com/v1/messages","application/json",json) If (http.LastMethodSuccess = False) Then System.DebugLog(http.LastErrorText) Return End If Dim sbResponseBody As New Chilkat.StringBuilder success = resp.GetBodySb(sbResponseBody) Dim jResp As New Chilkat.JsonObject success = jResp.LoadSb(sbResponseBody) jResp.EmitCompact = False System.DebugLog("Response Body:") System.DebugLog(jResp.Emit()) Dim respStatusCode As Int32 respStatusCode = resp.StatusCode System.DebugLog("Response Status Code = " + Str(respStatusCode)) If (respStatusCode >= 400) Then System.DebugLog("Response Header:") System.DebugLog(resp.Header) System.DebugLog("Failed.") Return End If // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "messages": [ // { // "message_id": "04fe9a97-a579-43c5-bb1a-58ed29bf0a6a", // "callback_url": "https://my.url.com", // "status": "delivered", // "content": "My first message", // "destination_number": "+61491570156", // "delivery_report": true, // "format": "SMS", // "message_expiry_timestamp": "2016-11-03T11:49:02.807Z", // "metadata": { // "myKey": "myValue", // "anotherKey": "anotherValue" // }, // "scheduled": "2016-11-03T11:49:02.807Z", // "source_number": "+61491570157", // "source_number_type": "INTERNATIONAL" // } // ] // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON Dim message_id As String Dim callback_url As String Dim status As String Dim content As String Dim destination_number As String Dim delivery_report As Boolean Dim format As String Dim message_expiry_timestamp As String Dim MyKey As String Dim AnotherKey As String Dim scheduled As String Dim source_number As String Dim source_number_type As String Dim i As Int32 i = 0 Dim count_i As Int32 count_i = jResp.SizeOfArray("messages") While i < count_i jResp.I = i message_id = jResp.StringOf("messages[i].message_id") callback_url = jResp.StringOf("messages[i].callback_url") status = jResp.StringOf("messages[i].status") content = jResp.StringOf("messages[i].content") destination_number = jResp.StringOf("messages[i].destination_number") delivery_report = jResp.BoolOf("messages[i].delivery_report") format = jResp.StringOf("messages[i].format") message_expiry_timestamp = jResp.StringOf("messages[i].message_expiry_timestamp") MyKey = jResp.StringOf("messages[i].metadata.myKey") AnotherKey = jResp.StringOf("messages[i].metadata.anotherKey") scheduled = jResp.StringOf("messages[i].scheduled") source_number = jResp.StringOf("messages[i].source_number") source_number_type = jResp.StringOf("messages[i].source_number_type") i = i + 1 Wend |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.