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

C++ Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(C++) Verify Okta Access Token Locally

This example demonstrates how to validate an Okta access token using Chilkat's JWT class.

For more information, see https://developer.okta.com/docs/guides/validate-access-tokens/overview/#what-to-check-when-validating-an-access-token

Chilkat C/C++ Library Downloads

MS Visual C/C++

Linux/CentOS C/C++

Alpine Linux C/C++

MAC OS X C/C++

armhf/aarch64 C/C++

C++ Builder

iOS C/C++

Android C/C++

Solaris C/C++

MinGW C/C++

#include <CkJsonObject.h>
#include <CkJwt.h>
#include <CkStringBuilder.h>
#include <CkPublicKey.h>

void ChilkatSample(void)
    {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    // This example begins with two JSON files:
    // 
    // 1. The access token obtained from Okta as shown in one fo these examples:  
    //    Get Okta Token using Resource Owner Password Flow
    // 
    // 2. The Okta web keys obtained by this example:  Get Okta Web Keys
    // 
    // 

    // Load the access token to be verified.
    // It contains JSON that looks like this:
    // {
    //   "access_token": "eyJraWQiOiJhb ... O_eVu-kBp6g",
    //   "token_type": "Bearer",
    //   "expires_in": 3600,
    //   "scope": "openid",
    //   "id_token": "eyJraWQi ... FrL9WOuwbQtUg"
    // }
    // This example verifies the access_token.  (The id_token is verified in this example:  Verify Okta ID Token

    CkJsonObject jsonToken;
    bool success = jsonToken.LoadFile("qa_data/tokens/okta_access_token.json");

    // Load the public keys (Okta web keys), one of which is needed to validate.
    // The web keys JSON looks like this:
    // {
    //   "keys": [
    //     {
    //       "kty": "RSA",
    //       "alg": "RS256",
    //       "kid": "anSaRDPfWGOSCVNZEIZB9quCbNsdsvl5uWGBzxbudWQ",
    //       "use": "sig",
    //       "e": "AQAB",
    //       "n": "jT8uAgd5w ... euLB1HaVw"
    //     },
    //     {
    // 	...
    //     }
    //   ]
    // }

    CkJsonObject jsonWebKeys;
    success = jsonWebKeys.LoadFile("qa_data/tokens/okta_web_keys.json");

    // ------------------------
    // Step 1: Get the JOSE header from the JWT.  The JOSE header contains JSON.  One of the JSON members will be the key ID "kid" which identifies the web key to be used for validation.
    // 
    CkJwt jwt;
    const char *accessToken = jsonToken.stringOf("access_token");
    const char *joseHeader = jwt.getHeader(accessToken);

    std::cout << joseHeader << "\r\n";
    // The joseHeader contains this:   {"kid":"anSaRDPfWGOSCVNZEIZB9quCbNsdsvl5uWGBzxbudWQ","alg":"RS256"}

    CkJsonObject json;
    json.Load(joseHeader);
    const char *kid = json.stringOf("kid");
    std::cout << "kid to find: " << kid << "\r\n";

    // ------------------------
    // Step 2: Find the key with the same "kid" in the Okta web keys.

    CkStringBuilder sbKid;
    const char *e = "";
    const char *n = "";

    int i = 0;
    int count_i = jsonWebKeys.SizeOfArray("keys");
    bool bFound = false;
    int iMatch = 0;
    while ((bFound == false) && (i < count_i)) {
        jsonWebKeys.put_I(i);
        sbKid.Clear();
        jsonWebKeys.StringOfSb("keys[i].kid",sbKid);
        std::cout << "checking kid: " << sbKid.getAsString() << "\r\n";

        if (sbKid.ContentsEqual(kid,true) == true) {
            e = jsonWebKeys.stringOf("keys[i].e");
            n = jsonWebKeys.stringOf("keys[i].n");
            // Exit the loop. 
            std::cout << "Found matching kid." << "\r\n";
            iMatch = i;
            bFound = true;
        }

        i = i + 1;
    }

    if (bFound == false) {
        std::cout << "No matching key ID found." << "\r\n";
        return;
    }

    std::cout << "Matching key:" << "\r\n";
    std::cout << "  exponent = " << e << "\r\n";
    std::cout << "  modulus = " << n << "\r\n";

    // ------------------------
    // Step 3: Load the RSA modulus and exponent into a Chilkat public key object.
    CkPublicKey pubkey;

    // Get the matching JSON key from the array of keys.
    jsonWebKeys.put_I(iMatch);
    CkJsonObject *jsonWebKey = jsonWebKeys.ObjectOf("keys[i]");
    success = pubkey.LoadFromString(jsonWebKey->emit());
    if (success == false) {
        std::cout << "Failed to load JSON web key." << "\r\n";
        std::cout << jsonWebKey->emit() << "\r\n";
        std::cout << pubkey.lastErrorText() << "\r\n";
        delete jsonWebKey;
        return;
    }

    delete jsonWebKey;
    std::cout << "successfully loaded web key." << "\r\n";

    // OK.. we have the desired JSON web key loaded into our public key object.
    // Now we can verify the access token.

    // ------------------------
    // Step 4: Verify the access token.
    bool bVerified = jwt.VerifyJwtPk(accessToken,pubkey);
    if (bVerified == true) {
        std::cout << "The access token is valid." << "\r\n";
    }
    else {
        std::cout << "The access token is NOT valid." << "\r\n";
    }
    }

 

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