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

Tcl 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

 

 

 

(Tcl) REST POST JSON using Gzip Content Encoding

Demonstrates how to send a JSON POST using the gzip Content-Encoding.

Chilkat Tcl Extension Downloads

Chilkat Tcl Extension Downloads

load ./chilkat.dll

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

# Use the online tool at https://tools.chilkat.io/Default.cshtml
# to generate the JSON code that creates this JSON:

# {
#     "lists": [
#         {
#             "id": "1511199999"
#         }
#     ],
#     "confirmed": false,
#     "email_addresses": [
#         {
#             "email_address": "support@chilkatsoft.com"
#         }
#     ],
#     "first_name": "Matt",
#     "last_name": "Smith"
# }
# 

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "lists[0].id" "1511199999"
CkJsonObject_UpdateBool $json "confirmed" 0
CkJsonObject_UpdateString $json "email_addresses[0].email_address" "support@chilkatsoft.com"
CkJsonObject_UpdateString $json "first_name" "Matt"
CkJsonObject_UpdateString $json "last_name" "Smith"

set rest [new_CkRest]

set success [CkRest_Connect $rest "api.constantcontact.com" 443 1 1]
if {$success != 1} then {
    puts [CkRest_lastErrorText $rest]
    delete_CkJsonObject $json
    delete_CkRest $rest
    exit
}

CkRest_AddHeader $rest "Content-Type" "application/json"
CkRest_AddHeader $rest "Authorization" "Bearer xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx"

# Tell the server you'll accept only an application/json response.
CkRest_AddHeader $rest "Accept" "application/json"

# Indicate that we'll be sending the request body gzipped.
CkRest_AddHeader $rest "Content-Encoding" "gzip"

set sbReq [new_CkStringBuilder]

CkJsonObject_EmitSb $json $sbReq

# Send the POST.
set sbResp [new_CkStringBuilder]

set success [CkRest_FullRequestSb $rest "POST" "/v2/contacts?action_by=ACTION_BY_VISITOR&api_key=xxxxxxx" $sbReq $sbResp]
if {$success != 1} then {
    puts [CkRest_lastErrorText $rest]
    delete_CkJsonObject $json
    delete_CkRest $rest
    delete_CkStringBuilder $sbReq
    delete_CkStringBuilder $sbResp
    exit
}

puts "Response body:"
puts [CkStringBuilder_getAsString $sbResp]

if {[CkRest_get_ResponseStatusCode $rest] != 200} then {
    puts "Received error response code: [CkRest_get_ResponseStatusCode $rest]"
    delete_CkJsonObject $json
    delete_CkRest $rest
    delete_CkStringBuilder $sbReq
    delete_CkStringBuilder $sbResp
    exit
}

set jsonResp [new_CkJsonObject]

CkJsonObject_LoadSb $jsonResp $sbResp

# Use the online tool at https://tools.chilkat.io/jsonParse.cshtml
# to generate the JSON code that parses the JSON response..

delete_CkJsonObject $json
delete_CkRest $rest
delete_CkStringBuilder $sbReq
delete_CkStringBuilder $sbResp
delete_CkJsonObject $jsonResp

 

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