![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java 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
(PowerBuilder) Test Salesforce OAuth2 Access TokenSee more Salesforce ExamplesDemonstrates how to make a simple Salesforce REST API call to test a previously obtained access token.
integer li_rc oleobject loo_Http oleobject loo_Json integer li_Success oleobject loo_SbUrl oleobject loo_SbResponseBody oleobject loo_JsonResponse // This example does the following: // curl -X GET https://yourInstance.salesforce.com/services/oauth2/userinfo \ // -H "Authorization: Bearer YOUR_ACCESS_TOKEN" loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") if li_rc < 0 then destroy loo_Http MessageBox("Error","Connecting to COM object failed") return end if // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code // This example assumes the OAuth2 access token was previously fetched // and saved to a file. See Get SalesForce OAuth2 Access Token via Authorization Flow loo_Json = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject") li_Success = loo_Json.LoadFile("qa_data/tokens/_salesforce.json") if li_Success = 0 then Write-Debug "Failed to load OAuth2 access token." destroy loo_Http destroy loo_Json return end if // Here's an example of the JSON: // { // "access_token": "00D41000....uLZBpT6", // "refresh_token": "5Aep....25xdGgkrV", // "signature": "cjTbSc5DvcKpaMoRTzuQTJLb1tcMw8LEO01flq4aMD4=", // "scope": "refresh_token id", // "instance_url": "https://d41000000f8a0eak-dev-ed.my.salesforce.com", // "id": "https://login.salesforce.com/id/00D41000000F8A0EAK/005410000....xAAE", // "token_type": "Bearer", // "issued_at": "1738348388166" // } // Adds the "Authorization: Bearer YOUR_ACCESS_TOKEN" header. loo_Http.AuthToken = loo_Json.StringOf("access_token") // We want to build the following URL: https://<instance_id>.salesforce.com/services/oauth2/userinfo loo_SbUrl = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbUrl.ConnectToNewObject("Chilkat.StringBuilder") loo_SbUrl.Append(loo_Json.StringOf("instance_url")) loo_SbUrl.Append("/services/oauth2/userinfo") loo_SbResponseBody = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder") li_Success = loo_Http.QuickGetSb(loo_SbUrl.GetAsString(),loo_SbResponseBody) if li_Success = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_Json destroy loo_SbUrl destroy loo_SbResponseBody return end if Write-Debug "Response status code = " + string(loo_Http.LastStatus) loo_JsonResponse = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_JsonResponse.ConnectToNewObject("Chilkat.JsonObject") loo_JsonResponse.LoadSb(loo_SbResponseBody) loo_JsonResponse.EmitCompact = 0 Write-Debug loo_JsonResponse.Emit() // The expected JSON response is something like this: // { // "sub": "005xxxxxxxxxxxx", // "name": "John Doe", // "preferred_username": "johndoe@example.com", // "email": "johndoe@example.com", // "profile": "https://na85.salesforce.com/005xxxxxxxxxxxx" // ... // ... // } destroy loo_Http destroy loo_Json destroy loo_SbUrl destroy loo_SbResponseBody destroy loo_JsonResponse |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.