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

 

 

 

(DataFlex) HMRC Validate Fraud Prevention Headers

Demonstrates how to test (validate) HMRC fraud prevention headers.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoRest
    Boolean iSuccess
    Handle hoJson
    String sAccessToken
    Handle hoSbAuthHeaderValue
    String sResponseStr
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

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

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

    Get ComConnect Of hoRest "test-api.service.hmrc.gov.uk" 443 True True To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoRest To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Load the previously fetched access token.
    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComLoadFile Of hoJson "qa_data/tokens/hmrc.json" To iSuccess
    Get ComStringOf Of hoJson "access_token" To sAccessToken
    Showln "Using access toke: " sAccessToken

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbAuthHeaderValue
    If (Not(IsComObjectCreated(hoSbAuthHeaderValue))) Begin
        Send CreateComObject of hoSbAuthHeaderValue
    End
    Get ComAppend Of hoSbAuthHeaderValue "Bearer " To iSuccess
    Get ComAppend Of hoSbAuthHeaderValue sAccessToken To iSuccess

    Get ComAddHeader Of hoRest "Accept" "application/vnd.hmrc.1.0+json" To iSuccess
    Get ComGetAsString Of hoSbAuthHeaderValue To sTemp1
    Get ComAddHeader Of hoRest "Authorization" sTemp1 To iSuccess

    // Add the fraud prevention headers.
    // See https://developer.service.hmrc.gov.uk/api-documentation/docs/fraud-prevention
    Get ComAddHeader Of hoRest "gov-client-connection-method" "DESKTOP_APP_DIRECT" To iSuccess

    // This should be generated by an application and persistently stored on the device. The identifier should not expire.
    Get ComAddHeader Of hoRest "gov-client-device-id" "beec798b-b366-47fa-b1f8-92cede14a1ce" To iSuccess

    // See https://developer.service.hmrc.gov.uk/api-documentation/docs/fraud-prevention
    Get ComAddHeader Of hoRest "gov-client-user-ids" "os=user123" To iSuccess

    // Your local IP addresses (comma separated), such as addresses beginning with "192.168." or "172.16."
    Get ComAddHeader Of hoRest "gov-client-local-ips" "172.16.16.23" To iSuccess
    // You'll need to find a way to get your MAC address.  Chilkat does not yet provide this ability...
    Get ComAddHeader Of hoRest "gov-client-mac-addresses" "7C%3AD3%3A0A%3A25%3ADA%3A1C" To iSuccess

    Get ComAddHeader Of hoRest "gov-client-timezone" "UTC+00:00" To iSuccess

    // You can probably just hard-code these so they're always the same with each request.
    Get ComAddHeader Of hoRest "gov-client-window-size" "width=1256&height=800" To iSuccess
    Get ComAddHeader Of hoRest "gov-client-screens" "width=1920&height=1080&scaling-factor=1&colour-depth=16" To iSuccess
    Get ComAddHeader Of hoRest "gov-client-user-agent" "Windows/Server%202012 (Dell%20Inc./OptiPlex%20980)" To iSuccess
    Get ComAddHeader Of hoRest "gov-vendor-version" "My%20Desktop%20Software=1.2.3.build4286" To iSuccess

    Get ComFullRequestNoBody Of hoRest "GET" "/test/fraud-prevention-headers/validate" To sResponseStr
    Get ComLastMethodSuccess Of hoRest To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoRest To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // If the status code is 200, then the fraud prevention headers were validated.
    // The JSON response may include some warnings..
    Get ComResponseStatusCode Of hoRest To iTemp1
    Showln "Response status code = " iTemp1
    Showln "Response JSON body: "
    Showln sResponseStr


End_Procedure

 

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