![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java JavaScript Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C++) curl with OAuth2 Client CredentialsSee more CURL ExamplesThis example shows how to run a simple CURL command with an OAuth2 access token for authorization. We use CURL to retrieve a SharePoint site ID, and Chilkat automatically fetches the OAuth2 access token using the provided credentials.Note: This example requires Chilkat v11.5.0 or greater.
#include <CkStringBuilderW.h> #include <CkJsonObjectW.h> #include <CkHttpCurlW.h> void ChilkatSample(void) { bool success = false; // This example will run the following curl command // curl -X GET "https://graph.microsoft.com/v1.0/sites/{{sharepoint_hostname}}:/sites/{{site_name}}" \ // -H "Authorization: Bearer ACCESS_TOKEN" \ // -H "Accept: application/json" CkStringBuilderW sb; sb.AppendLn(L"curl -X GET \"https://graph.microsoft.com/v1.0/sites/{{sharepoint_hostname}}:/sites/{{site_name}}\" \\"); sb.AppendLn(L" -H \"Authorization: Bearer ACCESS_TOKEN\" \\"); sb.AppendLn(L" -H \"Accept: application/json\""); // Build the JSON that provides information for getting the OAuth2 access token using the OAuth2 client credentials flow. CkJsonObjectW jsonOAuth2; jsonOAuth2.UpdateString(L"oauth2.client_id",L"CLIENT_ID"); jsonOAuth2.UpdateString(L"oauth2.client_secret",L"CLIENT_SECRET"); jsonOAuth2.UpdateString(L"oauth2.scope",L"https://graph.microsoft.com/.default"); jsonOAuth2.UpdateString(L"oauth2.token_endpoint",L"https://login.microsoftonline.com/TENANT_ID/oauth2/v2.0/token"); CkHttpCurlW httpCurl; // Provide the information for getting the OAuth2 access token from the token endpoint // Note: The Authorization header specified in the curl command will be ignored and replaced using the OAuth2 access token obtained at runtime from the token endpoint. httpCurl.SetAuth(jsonOAuth2); // The placeholders {{sharepoint_hostname}} and {{site_name}} represent variables that must be defined before execution. // When DoYourThing runs the curl command, it automatically substitutes these placeholders with their corresponding values. // Below are the values assigned to these variables: httpCurl.SetVar(L"sharepoint_hostname",L"example.sharepoint.com"); httpCurl.SetVar(L"site_name",L"test"); // Run the curl command. success = httpCurl.DoYourThing(sb.getAsString()); if (success == false) { wprintf(L"%s\n",httpCurl.lastErrorText()); return; } CkJsonObjectW responseJson; responseJson.put_EmitCompact(false); httpCurl.GetResponseJson(responseJson); int statusCode = httpCurl.get_StatusCode(); wprintf(L"response status code: %d\n",statusCode); wprintf(L"%s\n",responseJson.emit()); } |
||||||
© 2000-2026 Chilkat Software, Inc. All Rights Reserved.