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

Swift 2 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

 

 

 

(Swift 2) UPS Tracking API

Demonstrates making a call to the UPS tracking REST API. Parses the tracking response and extracts the base64 signature image to a gif file.

Chilkat Downloads for the Swift Programming Language

MAC OS X (Cocoa) Objective-C/Swift Libs

iOS Objective-C/Swift Libs

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

    var success: Bool

    let http = CkoHttp()

    // This is the testing endpoint for the tracking API:
    var url: String? = "https://wwwcie.ups.com/rest/Track"

    // Send an HTTP request with the following JSON body:

    // {
    //   "UPSSecurity": {
    //     "UsernameToken": {
    //       "Username": "Your Username",
    //       "Password": "Your Password"
    //     },
    //     "ServiceAccessToken": {
    //       "AccessLicenseNumber": "Your Access License Number"
    //     }
    //   },
    //   "TrackRequest": {
    //     "Request": {
    //       "RequestOption": "1",
    //       "TransactionReference": {
    //         "CustomerContext": "Your Test Case Summary Description"
    //       }
    //     },
    //     "InquiryNumber": "YourTrackingNumber"
    //   }
    // }
    // 

    // Build the above JSON.
    let json = CkoJsonObject()
    json.UpdateString("UPSSecurity.UsernameToken.Username", value: "UPS_USERNAME")
    json.UpdateString("UPSSecurity.UsernameToken.Password", value: "UPS_PASSWORD")
    json.UpdateString("UPSSecurity.ServiceAccessToken.AccessLicenseNumber", value: "UPS_ACCESS_KEY")
    // Request all activity...
    json.UpdateString("TrackRequest.Request.RequestOption", value: "activity")
    json.UpdateString("TrackRequest.Request.TransactionReference.CustomerContext", value: "Your Test Case Summary Description")
    json.UpdateString("TrackRequest.InquiryNumber", value: "1Z12345E0205271688")

    let sb = CkoStringBuilder()
    var resp: CkoHttpResponse? = http.PostJson3(url, contentType: "application/json", json: json)
    if http.LastMethodSuccess != true {
        print("\(http.LastErrorText)")
        return
    }

    print("status = \(resp!.StatusCode.intValue)")

    // A 200 response status indicate success.
    if resp!.StatusCode.intValue != 200 {
        print("\(resp!.BodyStr)")
        print("Failed.")
        resp = nil
        return
    }

    json.Load(resp!.BodyStr)
    json.EmitCompact = false
    print("\(json.Emit())")

    // {
    //   "TrackResponse": {
    //     "Response": {
    //       "ResponseStatus": {
    //         "Code": "1",
    //         "Description": "Success"
    //       },
    //       "TransactionReference": {
    //         "CustomerContext": "Your Test Case Summary Description"
    //       }
    //     },
    //     "Shipment": {
    //       "InquiryNumber": {
    //         "Code": "01",
    //         "Description": "ShipmentIdentificationNumber",
    //         "Value": "1Z12345E0205271688"
    //       },
    //       "ShipmentType": {
    //         "Code": "01",
    //         "Description": "Small Package"
    //       },
    //       "ShipperNumber": "12345E",
    //       "Service": {
    //         "Code": "002",
    //         "Description": "2ND DAY AIR"
    //       },
    //       "ReferenceNumber": {
    //         "Code": "01",
    //         "Value": "LINE4AND115"
    //       },
    //       "PickupDate": "19990608",
    //       "Package": {
    //         "TrackingNumber": "1Z12345E0205271688",
    //         "Activity": [
    //           {
    //             "ActivityLocation": {
    //               "Address": {
    //                 "City": "ANYTOWN",
    //                 "StateProvinceCode": "GA",
    // 
    //                 "PostalCode": "30340",
    //                 "CountryCode": "US"
    //               },
    //               "Code": "ML",
    //               "Description": "BACK DOOR",
    //               "SignedForByName": "JOHN DOE"
    //             },
    //             "Status": {
    //               "Type": "D",
    //               "Description": "DELIVERED",
    //               "Code": "KM"
    //             },
    //             "Date": "19990610",
    //             "Time": "120000",
    //             "Document": {
    //               "Type": {
    //                 "Code": "01",
    //                 "Description": "Signature Image"
    //               },
    //               "Content": "R0lGODdhoA ... JU9Y8RdHsRKLMVJ4MVDMREAAADs=",
    //               "Format": {
    //                 "Code": "01",
    //                 "Description": "GIF"
    //               }
    //             }
    //           },
    //           {
    //             "Status": {
    //               "Type": "M",
    //               "Description": "BILLING INFORMATION RECEIVED. SHIPMENT DATE PENDING.",
    //               "Code": "MP"
    //             },
    //             "Date": "19990608",
    //             "Time": "120000"
    //           }
    //         ],
    //         "PackageWeight": {
    //           "UnitOfMeasurement": {
    //             "Code": "LBS"
    //           },
    //           "Weight": "5.00"
    //         },
    //         "ReferenceNumber": [
    //           {
    //             "Code": "01",
    //             "Value": "LINE4AND115"
    //           },
    //           {
    //             "Code": "08",
    //             "Value": "LJ67Y5"
    //           }
    //         ]
    //       }
    //     },
    //     "Disclaimer": "You are using UPS tracking service on customer integration test environment, please switch to UPS production environment once you finish the test. The URL is https://onlinetools.ups.com/webservices/Track"
    //   }
    // }

    // Use the online tool at Generate JSON Parsing Code
    // to generate JSON parsing code.

    var statusCode: String? = json.StringOf("TrackResponse.Response.ResponseStatus.Code")
    var statusDescription: String? = json.StringOf("TrackResponse.Response.ResponseStatus.Description")
    print("statusCode: \(statusCode!)")
    print("statusDescription\(statusDescription!)")
    var customerContext: String? = json.StringOf("TrackResponse.Response.TransactionReference.CustomerContext")
    var inquiryNumberCode: String? = json.StringOf("TrackResponse.Shipment.InquiryNumber.Code")
    var inquiryNumberDescription: String? = json.StringOf("TrackResponse.Shipment.InquiryNumber.Description")
    var inquiryNumberValue: String? = json.StringOf("TrackResponse.Shipment.InquiryNumber.Value")
    var shipmentTypeCode: String? = json.StringOf("TrackResponse.Shipment.ShipmentType.Code")
    var shipmentTypeDescription: String? = json.StringOf("TrackResponse.Shipment.ShipmentType.Description")
    var shipperNumber: String? = json.StringOf("TrackResponse.Shipment.ShipperNumber")
    var serviceCode: String? = json.StringOf("TrackResponse.Shipment.Service.Code")
    var serviceDescription: String? = json.StringOf("TrackResponse.Shipment.Service.Description")
    var referenceNumberCode: String? = json.StringOf("TrackResponse.Shipment.ReferenceNumber.Code")
    var referenceNumberValue: String? = json.StringOf("TrackResponse.Shipment.ReferenceNumber.Value")
    var pickupDate: String? = json.StringOf("TrackResponse.Shipment.PickupDate")
    var trackingNumber: String? = json.StringOf("TrackResponse.Shipment.Package.TrackingNumber")
    var unitOfMeasurementCode: String? = json.StringOf("TrackResponse.Shipment.Package.PackageWeight.UnitOfMeasurement.Code")
    var weight: String? = json.StringOf("TrackResponse.Shipment.Package.PackageWeight.Weight")
    var disclaimer: String? = json.StringOf("TrackResponse.Disclaimer")

    var i: Int = 0
    var activityCount: Int = json.SizeOfArray("TrackResponse.Shipment.Package.Activity").intValue
    print("activityCount: \(activityCount)")

    while i < activityCount {
        print("-- activity \(i)")
        json.I = i
        if json.HasMember("TrackResponse.Shipment.Package.Activity[i].ActivityLocation.Address.City") == true {
            var city: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].ActivityLocation.Address.City")
            print("city: \(city!)")
            var provinceCode: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].ActivityLocation.Address.StateProvinceCode")
            var postalCode: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].ActivityLocation.Address.PostalCode")
            var countryCode: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].ActivityLocation.Address.CountryCode")
        }

        var locationCode: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].ActivityLocation.Code")
        var locationDescription: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].ActivityLocation.Description")
        var locationSignedForByName: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].ActivityLocation.SignedForByName")

        var activityStatusType: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].Status.Type")
        print("activityStatusType: \(activityStatusType!)")
        var activityStatusDescription: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].Status.Description")
        print("activityStatusDescription: \(activityStatusDescription!)")
        var activityStatusCode: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].Status.Code")
        print("activityStatusCode: \(activityStatusCode!)")

        var activityDate: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].Date")
        var activityTime: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].Time")

        if json.HasMember("TrackResponse.Shipment.Package.Activity[i].Document") == true {
            var typeCode: Int = json.IntOf("TrackResponse.Shipment.Package.Activity[i].Document.Type.Code").intValue
            var typeDescription: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].Document.Type.Description")
            var documentContent: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].Document.Content")
            var documentFormatCode: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].Document.Format.Code")
            // Format description would be something like "GIF" for a signature image.
            var documentFormatDescription: String? = json.StringOf("TrackResponse.Shipment.Package.Activity[i].Document.Format.Description")

            // 01 - Signature Image
            // 02 - Delivery Receipt
            // 03 - Free Astray
            // 04 - POD
            if typeCode == 1 {
                // We have a signature image.  Get the image data and save to a file.
                let sbImagePath = CkoStringBuilder()
                sbImagePath.Append("qa_output/sig_")
                sbImagePath.Append(trackingNumber)
                sbImagePath.Append(".")
                sbImagePath.Append(documentFormatDescription)
                let imageData = CkoBinData()
                success = imageData.AppendEncoded(documentContent, encoding: "base64")
                // Write to "qa_output/sig_1Z12345E0205271688.GIF"
                success = imageData.WriteFile(sbImagePath.GetAsString())
            }

        }

        i = i + 1
    }

    i = 0
    var refnumCount: Int = json.SizeOfArray("TrackResponse.Shipment.Package.ReferenceNumber").intValue
    while i < refnumCount {
        json.I = i
        var refnumCode: String? = json.StringOf("TrackResponse.Shipment.Package.ReferenceNumber[i].Code")
        var refnumValue: String? = json.StringOf("TrackResponse.Shipment.Package.ReferenceNumber[i].Value")
        i = i + 1
    }

    print("Success.")

    resp = nil

}

 

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