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 Web API Examples

Primary Categories

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

MedTunnel
MercadoLibre
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
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
UniPin
VoiceBase
Vonage
Walmart
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yousign
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(MFC) Xero Get Folders (Files API)

Demonstrates how to retrieve the list of folders.

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

Chilkat C/C++ Library Downloads

MS Visual C/C++ Libs

See Also: Using MFC CString in Chilkat

#include <CkRest.h>
#include <CkStringBuilder.h>
#include <CkJsonArray.h>
#include <CkJsonObject.h>

void ChilkatSample(void)
    {
    CkString strOut;

    // Note: Requires Chilkat v9.5.0.64 or greater.

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

    CkRest rest;
    bool success;

    // Before sending REST API calls, the REST object needs to be
    // initialized for OAuth1.
    // See Xero 2-Legged OAuth1 Setup for sample code.

    // Assuming the REST object's OAuth1 authenticator is setup, and the initial
    // connection was made, we may now send REST HTTP requests..

    // Get the full list of folders (in the FILES API)
    CkStringBuilder sbJson;
    success = rest.FullRequestNoBodySb("GET","/files.xro/1.0/Folders",sbJson);
    if (success != true) {
        strOut.append(rest.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    // The response is a JSON array.
    CkJsonArray jsonArr;
    jsonArr.LoadSb(sbJson);
    jsonArr.put_EmitCompact(false);

    // A 200 response is expected for actual success.
    if (rest.get_ResponseStatusCode() != 200) {
        strOut.append(jsonArr.emit());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    strOut.append(jsonArr.emit());
    strOut.append("\r\n");

    // The JSON list of folders looks like this:
    // See the code below showing how to iterate over the folders..

    // 	[
    // 	  { 
    // 	    "Name": "Inbox",
    // 	    "FileCount": 0,
    // 	    "Email": "xero.inbox.bt0xx.99ha3l7a28m7ghyn@xerofiles.com",
    // 	    "IsInbox": true,
    // 	    "Id": "de386667-2532-49d3-8ad8-b7727b128ea2"
    // 	  },
    // 	  { 
    // 	    "Name": "Contracts",
    // 	    "FileCount": 0,
    // 	    "IsInbox": false,
    // 	    "Id": "36f15a6e-74f3-42fd-8797-e288b9aae234"
    // 	  },
    // 	  { 
    // 	    "Name": "Images",
    // 	    "FileCount": 0,
    // 	    "IsInbox": false,
    // 	    "Id": "0ffca059-f2f1-4271-8de9-4b87c8c2c638"
    // 	  }
    // 	]

    int i = 0;
    int numFolders = jsonArr.get_Size();
    while (i < numFolders) {
        CkJsonObject *json = jsonArr.ObjectAt(i);
        strOut.append("Name: ");
        strOut.append(json->stringOf("Name"));
        strOut.append("\r\n");
        strOut.append("FileCount: ");
        strOut.appendInt(json->IntOf("FileCount"));
        strOut.append("\r\n");
        strOut.append("IsInbox: ");
        strOut.appendInt(json->BoolOf("IsInbox"));
        strOut.append("\r\n");
        strOut.append("Id: ");
        strOut.append(json->stringOf("Id"));
        strOut.append("\r\n");
        strOut.append("--");
        strOut.append("\r\n");
        delete json;
        i = i + 1;
    }



    SetDlgItemText(IDC_EDIT1,strOut.getUnicode());

    }

 

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