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

Excel Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
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

 

 

 

(Excel) Get E-way Bill System Access Token

Sends a request to get an E-way bill system access token.

Download Excel Class Modules

Chilkat Excel Class Modules

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

'  First load the public key provided by the E-way bill System
Dim pubkey As Chilkat.PublicKey
Set pubkey = Chilkat.NewPublicKey

success = pubkey.LoadFromFile("qa_data/pem/eway_publickey.pem")
If (success <> True) Then
    Debug.Print pubkey.LastErrorText
    Exit Sub
End If

'  Encrypt the password using the RSA public key provided by eway..

password = "my_wepgst_password"
Dim rsa As Chilkat.Rsa
Set rsa = Chilkat.NewRsa
rsa.Charset = "utf-8"
rsa.EncodingMode = "base64"

success = rsa.ImportPublicKeyObj(pubkey)
If (success <> True) Then
    Debug.Print rsa.LastErrorText
    Exit Sub
End If

'  Returns the encrypted password as base64 (because the EncodingMode = "base64")

encPassword = rsa.EncryptStringENC(password,False)
If (rsa.LastMethodSuccess <> True) Then
    Debug.Print rsa.LastErrorText
    Exit Sub
End If

'  Generate a random app_key.  This should be 32 bytes (us-ascii chars)
'  We need 32 bytes because we'll be doing 256-bit AES ECB encryption, and 32 bytes = 256 bits.
Dim prng As Chilkat.Prng
Set prng = Chilkat.NewPrng
'  Generate a random string containing some numbers, uppercase, and lowercase.

app_key = prng.RandomString(32,True,True,True)

Debug.Print "app_key = "; app_key

'  RSA encrypt the app_key.

encAppKey = rsa.EncryptStringENC(app_key,False)
If (rsa.LastMethodSuccess <> True) Then
    Debug.Print rsa.LastErrorText
    Exit Sub
End If

'  Prepare the JSON body for the HTTP POST that gets the access token.
Dim jsonBody As Chilkat.JsonObject
Set jsonBody = Chilkat.NewJsonObject
success = jsonBody.UpdateString("action","ACCESSTOKEN")
'  Use your username instead of "09ABDC24212B1FK".
success = jsonBody.UpdateString("username","09ABDC24212B1FK")
success = jsonBody.UpdateString("password",encPassword)
success = jsonBody.UpdateString("app_key",encAppKey)

Dim http As Chilkat.Http
Set http = Chilkat.NewHttp

'  Add required headers.
'  Use your ewb-user-id instead of "03AEXPR16A9M010"
http.SetRequestHeader "ewb-user-id","03AEXPR16A9M010"
'  The Gstin should be the same as the username in the jsonBody above.
http.SetRequestHeader "Gstin","09ABDC24212B1FK"
http.Accept = "application/json"

'  POST the JSON...

Set resp = http.PostJson2("http://ewb.wepgst.com/api/Authenticate","application/json",jsonBody.Emit())
If (http.LastMethodSuccess <> True) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If


respStatusCode = resp.StatusCode
Debug.Print "response status code ="; respStatusCode
Debug.Print "response body:"
Debug.Print resp.BodyStr

If (respStatusCode <> 200) Then

    Debug.Print "Failed in some unknown way."
    Exit Sub
End If

'  When the response status code = 200, we'll have either
'  success response like this:
'   {"status":"1","authtoken":"...","sek":"..."}
' 
'  or a failed response like this:
' 
'  {"status":"0","error":"eyJlcnJvckNvZGVzIjoiMTA4In0="}

'  Load the response body into a JSON object.
Dim json As Chilkat.JsonObject
Set json = Chilkat.NewJsonObject
success = json.Load(resp.BodyStr)


status = json.IntOf("status")
Debug.Print "status = "; status

If (status <> 1) Then
    '  Failed.  Base64 decode the error
    ' {"status":"0","error":"eyJlcnJvckNvZGVzIjoiMTA4In0="}
    '  For an invalid password, the error is: {"errorCodes":"108"}
    Dim sbError As Chilkat.StringBuilder
    Set sbError = Chilkat.NewStringBuilder
    success = json.StringOfSb("error",sbError)
    success = sbError.Decode("base64","utf-8")
    Debug.Print "error: "; sbError.GetAsString()
    Exit Sub
End If

'  At this point, we know the request was entirely successful.

authToken = json.StringOf("authtoken")

'  Decrypt the sek key using our app_key.
Dim crypt As Chilkat.Crypt2
Set crypt = Chilkat.NewCrypt2
crypt.CryptAlgorithm = "aes"
crypt.CipherMode = "ecb"
crypt.KeyLength = 256
crypt.SetEncodedKey app_key,"us-ascii"
crypt.EncodingMode = "base64"

Dim bdSek As Chilkat.BinData
Set bdSek = Chilkat.NewBinData
success = bdSek.AppendEncoded(json.StringOf("sek"),"base64")
success = crypt.DecryptBd(bdSek)

'  bdSek now contains the decrypted symmetric encryption key...
'  We'll use it to encrypt the JSON payloads we send.

'  Let's persist our authtoken and decrypted sek (symmetric encryption key).
'  To send EWAY requests (such as to create an e-way bill), we'll just load
'  and use these pre-obtained credentials.
Dim jsonEwayAuth As Chilkat.JsonObject
Set jsonEwayAuth = Chilkat.NewJsonObject
success = jsonEwayAuth.UpdateString("authToken",authToken)
success = jsonEwayAuth.UpdateString("decryptedSek",bdSek.GetEncoded("base64"))
jsonEwayAuth.EmitCompact = False

Dim fac As Chilkat.FileAccess
Set fac = Chilkat.NewFileAccess
success = fac.WriteEntireTextFile("qa_data/tokens/ewayAuth.json",jsonEwayAuth.Emit(),"utf-8",False)

Debug.Print "Saved:"
Debug.Print jsonEwayAuth.Emit()

'  Sample output:
'  {
'    "authToken": "IBTeFtxNfVurg71LTzZ2r0xK7",
'    "decryptedSek": "5g1TyTie7yoslU3DrbYATa7mWyPazlODE7cEh5Vy4Ho="
'  }

 

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