Xbase++ Requires Chilkat v11.5.0+
Xbase++
curl with OAuth2 Client Credentials
See more CURL Examples
This 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.Chilkat Xbase++ Downloads
LOCAL nSuccess
LOCAL oSb
LOCAL oJsonOAuth2
LOCAL oHttpCurl
LOCAL oResponseJson
LOCAL nStatusCode
nSuccess := 0
// 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"
oSb := CreateObject("Chilkat.StringBuilder")
oSb:AppendLn('curl -X GET "https://graph.microsoft.com/v1.0/sites/{{sharepoint_hostname}}:/sites/{{site_name}}" \')
oSb:AppendLn(' -H "Authorization: Bearer ACCESS_TOKEN" \')
oSb:AppendLn(' -H "Accept: application/json"')
// Build the JSON that provides information for getting the OAuth2 access token using the OAuth2 client credentials flow.
oJsonOAuth2 := CreateObject("Chilkat.JsonObject")
oJsonOAuth2:UpdateString("oauth2.client_id", "CLIENT_ID")
oJsonOAuth2:UpdateString("oauth2.client_secret", "CLIENT_SECRET")
oJsonOAuth2:UpdateString("oauth2.scope", "https://graph.microsoft.com/.default")
oJsonOAuth2:UpdateString("oauth2.token_endpoint", "https://login.microsoftonline.com/TENANT_ID/oauth2/v2.0/token")
oHttpCurl := CreateObject("Chilkat.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.
oHttpCurl:SetAuth(oJsonOAuth2)
// 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:
oHttpCurl:SetVar("sharepoint_hostname", "example.sharepoint.com")
oHttpCurl:SetVar("site_name", "test")
// Run the curl command.
nSuccess := oHttpCurl:DoYourThing(oSb:GetAsString())
IF (nSuccess == 0)
? oHttpCurl:LastErrorText
oSb:destroy()
oJsonOAuth2:destroy()
oHttpCurl:destroy()
RETURN
ENDIF
oResponseJson := CreateObject("Chilkat.JsonObject")
oResponseJson:EmitCompact := 0
oHttpCurl:GetResponseJson(oResponseJson)
nStatusCode := oHttpCurl:StatusCode
? "response status code: " + Str(nStatusCode)
? oResponseJson:Emit()
oSb:destroy()
oJsonOAuth2:destroy()
oHttpCurl:destroy()
oResponseJson:destroy()