Visual FoxPro
Visual FoxPro
Twilio Send MMS (using Chilkat HTTP)
See more Twilio Examples
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.
Chilkat Visual FoxPro Downloads
LOCAL lnSuccess
LOCAL loHttp
LOCAL loReq
LOCAL loResp
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL loDate_created
LOCAL loDate_updated
LOCAL loDate_sent
LOCAL lcSid
LOCAL lcAccount_sid
LOCAL lcV_to
LOCAL lcFrom
LOCAL lcMessaging_service_sid
LOCAL lcBody
LOCAL lcStatus
LOCAL lcNum_segments
LOCAL lcNum_media
LOCAL lcDirection
LOCAL lcApi_version
LOCAL lcPrice
LOCAL lcPrice_unit
LOCAL lcError_code
LOCAL lcError_message
LOCAL lcUri
LOCAL lcSubresource_urisMedia
lnSuccess = 0
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
loHttp = CreateObject('Chilkat.Http')
* 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
loHttp.Login = "TWILIO_ACCOUNT_SID"
loHttp.Password = "TWILIO_AUTH_TOKEN"
loReq = CreateObject('Chilkat.HttpRequest')
loReq.HttpVerb = "POST"
loReq.Path = "/2010-04-01/Accounts/TWILIO_ACCOUNT_SID/Messages.json"
loReq.ContentType = "application/x-www-form-urlencoded"
loReq.AddParam("From","+15005550006")
loReq.AddParam("Body","body")
loReq.AddParam("To","+15005551212")
loReq.AddParam("MediaUrl","https://www.chilkatsoft.com/images/starfish.jpg")
loResp = CreateObject('Chilkat.HttpResponse')
lnSuccess = loHttp.HttpReq("https://api.twilio.com/2010-04-01/Accounts/TWILIO_ACCOUNT_SID/Messages.json",loReq,loResp)
IF (lnSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loReq
RELEASE loResp
CANCEL
ENDIF
loSbResponseBody = CreateObject('Chilkat.StringBuilder')
loResp.GetBodySb(loSbResponseBody)
loJResp = CreateObject('Chilkat.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0
? "Response Body:"
? loJResp.Emit()
* A 201 status code indicates success.
lnRespStatusCode = loResp.StatusCode
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
? "Response Header:"
? loResp.Header
? "Failed."
RELEASE loHttp
RELEASE loReq
RELEASE loResp
RELEASE loSbResponseBody
RELEASE loJResp
CANCEL
ENDIF
* 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
loDate_created = CreateObject('Chilkat.DtObj')
loDate_updated = CreateObject('Chilkat.DtObj')
loDate_sent = CreateObject('Chilkat.DtObj')
lcSid = loJResp.StringOf("sid")
loJResp.DtOf("date_created",0,loDate_created)
loJResp.DtOf("date_updated",0,loDate_updated)
loJResp.DtOf("date_sent",0,loDate_sent)
lcAccount_sid = loJResp.StringOf("account_sid")
lcV_to = loJResp.StringOf("to")
lcFrom = loJResp.StringOf("from")
lcMessaging_service_sid = loJResp.StringOf("messaging_service_sid")
lcBody = loJResp.StringOf("body")
lcStatus = loJResp.StringOf("status")
lcNum_segments = loJResp.StringOf("num_segments")
lcNum_media = loJResp.StringOf("num_media")
lcDirection = loJResp.StringOf("direction")
lcApi_version = loJResp.StringOf("api_version")
lcPrice = loJResp.StringOf("price")
lcPrice_unit = loJResp.StringOf("price_unit")
lcError_code = loJResp.StringOf("error_code")
lcError_message = loJResp.StringOf("error_message")
lcUri = loJResp.StringOf("uri")
lcSubresource_urisMedia = loJResp.StringOf("subresource_uris.media")
RELEASE loHttp
RELEASE loReq
RELEASE loResp
RELEASE loSbResponseBody
RELEASE loJResp
RELEASE loDate_created
RELEASE loDate_updated
RELEASE loDate_sent