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

Unicode 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

 

 

 

(Unicode C) Xero 2 Legged OAuth for Private Application

This example demonstrates the REST object for 2-legged OAuth for a private application.

Note: This example requires Chilkat v9.5.0.64 or later.

An application can setup OAuth1 for a given instance of the Chilkat REST object, and then use the instance for many REST API calls. This example demonstrates the OAuth1 setup and initial connection. This code would typically be placed in a subroutine/function to "initalize" the REST object before beginning to use it for REST HTTP requests.

Note: Xero private applications use 2 legged OAuth and bypass the user authorization workflow in the standard OAuth process. Private applications are linked to a single Xero organisation which is chosen when you register your application. In summary: 2-legged OAuth1 is for applications that access the data that they themselves own.

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 <C_CkRestW.h>
#include <C_CkPfxW.h>
#include <C_CkPrivateKeyW.h>
#include <C_CkOAuth1W.h>

void ChilkatSample(void)
    {
    HCkRestW rest;
    const wchar_t *consumerKey;
    const wchar_t *consumerSecret;
    HCkPfxW pfx;
    BOOL success;
    HCkPrivateKeyW privKeyFromPfx;
    HCkPrivateKeyW privKeyFromPem;
    HCkOAuth1W oauth1;
    BOOL bAutoReconnect;

    // This example requires Chilkat v9.5.0.64 or later

    // This sample code would typically be placed in a subroutine or function
    // where the rest object is passed by reference.
    // It does the OAuth1 setup and makes the initial connection.
    rest = CkRestW_Create();

    consumerKey = L"XERO_PRIVATE_APP_KEY";
    consumerSecret = L"XERO_PRIVATE_APP_SECRET";

    // Let's get our private key from our PFX (password protected), or the PEM (unprotected).
    // You can decide which to use.  Either is OK, although I would recommend keeping your
    // private keys in a PFX and not in an unprotected PEM.
    pfx = CkPfxW_Create();
    success = CkPfxW_LoadPfxFile(pfx,L"qa_data/certs/xero_private_app/public_privatekey.pfx",L"PFX_PASSWORD");
    if (success != TRUE) {
        wprintf(L"%s\n",CkPfxW_lastErrorText(pfx));
        CkRestW_Dispose(rest);
        CkPfxW_Dispose(pfx);
        return;
    }

    privKeyFromPfx = CkPfxW_GetPrivateKey(pfx,0);
    if (CkPfxW_getLastMethodSuccess(pfx) != TRUE) {
        wprintf(L"%s\n",CkPfxW_lastErrorText(pfx));
        CkRestW_Dispose(rest);
        CkPfxW_Dispose(pfx);
        return;
    }

    // Or we can load from a PEM..
    privKeyFromPem = CkPrivateKeyW_Create();
    success = CkPrivateKeyW_LoadPemFile(privKeyFromPem,L"qa_data/certs/xero_private_app/privatekey.pem");
    if (success != TRUE) {
        wprintf(L"%s\n",CkPrivateKeyW_lastErrorText(privKeyFromPem));
        CkRestW_Dispose(rest);
        CkPfxW_Dispose(pfx);
        CkPrivateKeyW_Dispose(privKeyFromPem);
        return;
    }

    // Note: There are many other means for loading a private key, including
    // from other formats and directly from memory (i.e. not file-based).

    oauth1 = CkOAuth1W_Create();
    CkOAuth1W_putConsumerKey(oauth1,consumerKey);
    CkOAuth1W_putConsumerSecret(oauth1,consumerSecret);
    CkOAuth1W_putToken(oauth1,consumerKey);
    CkOAuth1W_putTokenSecret(oauth1,consumerSecret);
    CkOAuth1W_putSignatureMethod(oauth1,L"RSA-SHA1");
    CkOAuth1W_SetRsaKey(oauth1,privKeyFromPfx);
    CkPrivateKeyW_Dispose(privKeyFromPfx);

    // Make the initial connection.
    // A single REST object, once connected, can be used for many Xero REST API calls.
    // The auto-reconnect indicates that if the already-established HTTPS connection is closed,
    // then it will be automatically re-established as needed.
    bAutoReconnect = TRUE;
    success = CkRestW_Connect(rest,L"api.xero.com",443,TRUE,bAutoReconnect);
    if (success != TRUE) {
        wprintf(L"%s\n",CkRestW_lastErrorText(rest));
        CkRestW_Dispose(rest);
        CkPfxW_Dispose(pfx);
        CkPrivateKeyW_Dispose(privKeyFromPem);
        CkOAuth1W_Dispose(oauth1);
        return;
    }

    // Finally, install the OAuth1 authenticator.
    // (It make no difference whether this happens before or after the
    // connection is established.)
    CkRestW_SetAuthOAuth1(rest,oauth1,FALSE);

    wprintf(L"OK, the Xero OAuth1 is initialized and the REST object is ready to make REST API calls..\n");


    CkRestW_Dispose(rest);
    CkPfxW_Dispose(pfx);
    CkPrivateKeyW_Dispose(privKeyFromPem);
    CkOAuth1W_Dispose(oauth1);

    }

 

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