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

MFC Examples

Web API Categories

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

 

 

 

(MFC) Get E-way Bill System Access Token

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

Chilkat C/C++ Library Downloads

MS Visual C/C++ Libs

See Also: Using MFC CString in Chilkat

#include <CkPublicKey.h>
#include <CkRsa.h>
#include <CkPrng.h>
#include <CkJsonObject.h>
#include <CkHttp.h>
#include <CkHttpResponse.h>
#include <CkStringBuilder.h>
#include <CkCrypt2.h>
#include <CkBinData.h>
#include <CkFileAccess.h>

void ChilkatSample(void)
    {
    CkString strOut;

    //  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
    CkPublicKey pubkey;
    bool success = pubkey.LoadFromFile("qa_data/pem/eway_publickey.pem");
    if (success != true) {
        strOut.append(pubkey.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    //  Encrypt the password using the RSA public key provided by eway..
    const char *password = "my_wepgst_password";
    CkRsa rsa;
    rsa.put_Charset("utf-8");
    rsa.put_EncodingMode("base64");

    success = rsa.ImportPublicKeyObj(pubkey);
    if (success != true) {
        strOut.append(rsa.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    //  Returns the encrypted password as base64 (because the EncodingMode = "base64")
    const char *encPassword = rsa.encryptStringENC(password,false);
    if (rsa.get_LastMethodSuccess() != true) {
        strOut.append(rsa.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    //  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.
    CkPrng prng;
    //  Generate a random string containing some numbers, uppercase, and lowercase.
    const char *app_key = prng.randomString(32,true,true,true);

    strOut.append("app_key = ");
    strOut.append(app_key);
    strOut.append("\r\n");

    //  RSA encrypt the app_key.
    const char *encAppKey = rsa.encryptStringENC(app_key,false);
    if (rsa.get_LastMethodSuccess() != true) {
        strOut.append(rsa.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    //  Prepare the JSON body for the HTTP POST that gets the access token.
    CkJsonObject jsonBody;
    jsonBody.UpdateString("action","ACCESSTOKEN");
    //  Use your username instead of "09ABDC24212B1FK".
    jsonBody.UpdateString("username","09ABDC24212B1FK");
    jsonBody.UpdateString("password",encPassword);
    jsonBody.UpdateString("app_key",encAppKey);

    CkHttp http;

    //  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.put_Accept("application/json");

    //  POST the JSON...
    CkHttpResponse *resp = http.PostJson2("http://ewb.wepgst.com/api/Authenticate","application/json",jsonBody.emit());
    if (http.get_LastMethodSuccess() != true) {
        strOut.append(http.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    int respStatusCode = resp->get_StatusCode();
    strOut.append("response status code =");
    strOut.appendInt(respStatusCode);
    strOut.append("\r\n");
    strOut.append("response body:");
    strOut.append("\r\n");
    strOut.append(resp->bodyStr());
    strOut.append("\r\n");

    if (respStatusCode != 200) {
        delete resp;
        strOut.append("Failed in some unknown way.");
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    //  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.
    CkJsonObject json;
    json.Load(resp->bodyStr());
    delete resp;

    int status = json.IntOf("status");
    strOut.append("status = ");
    strOut.appendInt(status);
    strOut.append("\r\n");

    if (status != 1) {
        //  Failed.  Base64 decode the error
        // {"status":"0","error":"eyJlcnJvckNvZGVzIjoiMTA4In0="}
        //  For an invalid password, the error is: {"errorCodes":"108"}
        CkStringBuilder sbError;
        json.StringOfSb("error",sbError);
        sbError.Decode("base64","utf-8");
        strOut.append("error: ");
        strOut.append(sbError.getAsString());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    //  At this point, we know the request was entirely successful.
    const char *authToken = json.stringOf("authtoken");

    //  Decrypt the sek key using our app_key.
    CkCrypt2 crypt;
    crypt.put_CryptAlgorithm("aes");
    crypt.put_CipherMode("ecb");
    crypt.put_KeyLength(256);
    crypt.SetEncodedKey(app_key,"us-ascii");
    crypt.put_EncodingMode("base64");

    CkBinData bdSek;
    bdSek.AppendEncoded(json.stringOf("sek"),"base64");
    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.
    CkJsonObject jsonEwayAuth;
    jsonEwayAuth.UpdateString("authToken",authToken);
    jsonEwayAuth.UpdateString("decryptedSek",bdSek.getEncoded("base64"));
    jsonEwayAuth.put_EmitCompact(false);

    CkFileAccess fac;
    fac.WriteEntireTextFile("qa_data/tokens/ewayAuth.json",jsonEwayAuth.emit(),"utf-8",false);

    strOut.append("Saved:");
    strOut.append("\r\n");
    strOut.append(jsonEwayAuth.emit());
    strOut.append("\r\n");

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


    SetDlgItemText(IDC_EDIT1,strOut.getUnicode());

    }

 

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