Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

MFC Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
Socket/SSL/TLS
Spider
Stream
Tar Archive
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(MFC) Twilio: Send SMS using Basic Authentication

Demonstrates how to use Twilio to send an SMS message using Basic authentication.

For more information, see https://www.twilio.com/docs/sms/send-messages

Chilkat C/C++ Library Downloads

MS Visual C/C++ Libs

See Also: Using MFC CString in Chilkat

#include <CkRest.h>
#include <CkJsonObject.h>

void ChilkatSample(void)
    {
    CkString strOut;

    // Demonstrates how to use Basic Authentication in a REST API call for Twilio.
    // Sends an SMS text message..

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkRest rest;

    // Use Basic Authentication.
    // Your Twilio Account SID is the username.
    // Your Twilio Auth Token is the password.
    bool success = rest.SetAuthBasic("TWILIO_ACCOUNT_SID","TWILIO_AUTH_TOKEN");

    // Make the initial connection (without sending a request yet) to Twilio.
    bool bTls = true;
    int port = 443;
    bool bAutoReconnect = true;
    success = rest.Connect("api.twilio.com",port,bTls,bAutoReconnect);
    if (success != true) {
        strOut.append(rest.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    // Provide the information for the SMS text message:
    success = rest.AddQueryParam("To","+16518675309");
    success = rest.AddQueryParam("From","+15005550006");
    success = rest.AddQueryParam("Body","Hey Jenny! Good luck on the bar exam!");
    success = rest.AddQueryParam("MediaUrl","http://farm2.static.flickr.com/1075/1404618563_3ed9a44a3a.jpg");

    // Send the SMS text message.
    // Your Twilio Account SID is part of the URI path:
    const char *responseJson = rest.fullRequestFormUrlEncoded("POST","/2010-04-01/Accounts/TWILIO_ACCOUNT_SID/Messages.json");
    if (rest.get_LastMethodSuccess() != true) {
        strOut.append(rest.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    // When successful, the response status code will equal 201.
    if (rest.get_ResponseStatusCode() != 201) {
        // Examine the request/response to see what happened.
        strOut.append("response status code = ");
        strOut.appendInt(rest.get_ResponseStatusCode());
        strOut.append("\r\n");
        strOut.append("response status text = ");
        strOut.append(rest.responseStatusText());
        strOut.append("\r\n");
        strOut.append("response header: ");
        strOut.append(rest.responseHeader());
        strOut.append("\r\n");
        strOut.append("response body (if any): ");
        strOut.append(responseJson);
        strOut.append("\r\n");
        strOut.append("---");
        strOut.append("\r\n");
        strOut.append("LastRequestStartLine: ");
        strOut.append(rest.lastRequestStartLine());
        strOut.append("\r\n");
        strOut.append("LastRequestHeader: ");
        strOut.append(rest.lastRequestHeader());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    // The response is JSON.  We'll show how to get a few bits of information from it.
    // A full sample JSON response is shown below..

    CkJsonObject json;
    json.put_EmitCompact(false);
    success = json.Load(responseJson);

    // First show the entire JSON.
    strOut.append(json.emit());
    strOut.append("\r\n");

    // Now get some individual pieces of information:
    strOut.append("sid: ");
    strOut.append(json.stringOf("sid"));
    strOut.append("\r\n");
    strOut.append("body: ");
    strOut.append(json.stringOf("body"));
    strOut.append("\r\n");
    strOut.append("media: ");
    strOut.append(json.stringOf("subresource_uris.media"));
    strOut.append("\r\n");

    strOut.append("Success.");
    strOut.append("\r\n");

    // Sample JSON response:

    // {
    //   "sid": "MM97ecfd43e9f24e99b0c2c6ee016949e3",
    //   "date_created": null,
    //   "date_updated": null,
    //   "date_sent": null,
    //   "account_sid": "112e1111e0151133d11112101111d1111",
    //   "to": "+16518675309",
    //   "from": "+15005550006",
    //   "messaging_service_sid": null,
    //   "body": "Sent from your Twilio trial account - Hey Jenny! Good luck on the bar exam!",
    //   "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/MM97ecfd43e9f24e99b0c2c6ee016949e3.json",
    //   "subresource_uris": {
    //     "media": "/2010-04-01/Accounts/AC2e9b6bc0f51133df24926f07341d3824/Messages/MM97ecfd43e9f24e99b0c2c6ee016949e3/Media.json"
    //   }
    // }


    SetDlgItemText(IDC_EDIT1,strOut.getUnicode());

    }

 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.