Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

DataFlex Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
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
Misc
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
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(DataFlex) Twitter - Tweet with Multiple Images

Example to post a status update with multiple associated images/photos (or videos).

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoJson
    Boolean iSuccess
    Handle hoRest
    Variant vOauth1
    Handle hoOauth1
    Boolean iBAutoReconnect
    String sTweetContent
    String sResp
    Handle hoJsonResponse
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

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

    // ----------------------------------------------------------------------
    // This initial setup, which involves setting the OAuth1 properties and connecting
    // to api.twitter.com, is only required once at the beginning.  Once connected, the same
    // object instance may be re-used, and if necessary, it will automatically reconnect
    // as needed.

    // Assume we've previously obtained an access token and saved it to a JSON file..
    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComLoadFile Of hoJson "qa_data/tokens/twitter.json" To iSuccess

    Get Create (RefClass(cComChilkatRest)) To hoRest
    If (Not(IsComObjectCreated(hoRest))) Begin
        Send CreateComObject of hoRest
    End
    Get Create (RefClass(cComChilkatOAuth1)) To hoOauth1
    If (Not(IsComObjectCreated(hoOauth1))) Begin
        Send CreateComObject of hoOauth1
    End

    Set ComConsumerKey Of hoOauth1 To "TWITTER_CONSUMER_KEY"
    Set ComConsumerSecret Of hoOauth1 To "TWITTER_CONSUMER_SECRET"
    Get ComStringOf Of hoJson "oauth_token" To sTemp1
    Set ComToken Of hoOauth1 To sTemp1
    Get ComStringOf Of hoJson "oauth_token_secret" To sTemp1
    Set ComTokenSecret Of hoOauth1 To sTemp1
    Set ComSignatureMethod Of hoOauth1 To "HMAC-SHA1"
    Get ComGenNonce Of hoOauth1 16 To iSuccess

    Get pvComObject of hoOauth1 to vOauth1
    Get ComSetAuthOAuth1 Of hoRest vOauth1 False To iSuccess

    Move True To iBAutoReconnect
    Get ComConnect Of hoRest "api.twitter.com" 443 True iBAutoReconnect To iSuccess
    If (iSuccess <> True) Begin
        Get ComLastErrorText Of hoRest To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // This ends the initial setup...
    // ----------------------------------------------------------------------

    Move "This is a test tweet with multiple images." To sTweetContent

    // Send a tweet...
    Get ComClearAllQueryParams Of hoRest To iSuccess
    Get ComAddQueryParam Of hoRest "status" sTweetContent To iSuccess

    // Add list of comma separated media_ids to associate with the Tweet. 
    // You may include up to 4 photos or 1 animated GIF or 1 video in a Tweet.
    // The image needs to have been previously uploaded.  The upload response gave us
    // the media ID we'll use to associate this tweet with the image (or video)
    // See Twitter Upload Media for sample code.
    Get ComAddQueryParam Of hoRest "media_ids" "793137045996646400,793192201392041984" To iSuccess

    Get ComFullRequestFormUrlEncoded Of hoRest "POST" "/1.1/statuses/update.json" To sResp
    Get ComLastMethodSuccess Of hoRest To bTemp1
    If (bTemp1 <> True) Begin
        Get ComLastErrorText Of hoRest To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatJsonObject)) To hoJsonResponse
    If (Not(IsComObjectCreated(hoJsonResponse))) Begin
        Send CreateComObject of hoJsonResponse
    End
    Set ComEmitCompact Of hoJsonResponse To False
    Get ComLoad Of hoJsonResponse sResp To iSuccess

    Get ComResponseStatusCode Of hoRest To iTemp1
    If (iTemp1 <> 200) Begin
        Get ComEmit Of hoJsonResponse To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Show the successful response:
    Get ComEmit Of hoJsonResponse To sTemp1
    Showln sTemp1
    Showln "Success."


End_Procedure

 

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