![]() |
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
(Go) Quickbooks Revoke OAuth2 TokenDemonstrates how to revoke a QuickBooks OAuth2 access token. Note: This example requires Chilkat v11.0.0 or greater. For more information, see https://developer.intuit.com/app/developer/qbo/docs/develop/authentication-and-authorization/oauth-2.0#revoke-token-disconnect
success := false // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // This example assumes we previously obtained an OAuth2_Ref.html">OAuth2 access token for QuickBooks. jsonToken := JsonObject_Ref.html">chilkat.NewJsonObject() success = jsonToken.LoadFile("qa_data/tokens/qb-access-token.json") if success != true { fmt.Println("Failed to load qb-access-token.json") jsonToken.DisposeJsonObject() return } // The access token JSON looks something like this: // { // "expires_in": 3600, // "x_refresh_token_expires_in": 8726400, // "refresh_token": "L011546037639r ... 3vR2DrbOmg0Sdagw", // "access_token": "eyJlbmMiOiJBMTI4Q0 ... oETJEMbeggg", // "token_type": "bearer" // } // This code sends the following request: // POST https://developer.api.intuit.com/v2/oauth2/tokens/revoke HTTP/1.1 // Accept: application/json // Authorization: Basic UTM0dVB...wM1d2 // Content-Type: application/json // // { // "token": "{bearerToken or refreshToken}" // } // Use this online tool to generate HTTP code from a sample request: // Generate Code from a Sample HTTP Request http := Http_Ref.html">chilkat.NewHttp() http.SetRequestHeader("Accept","application/json") http.SetBasicAuth(true) http.SetLogin("QUICKBOOKS-CLIENT-ID") http.SetPassword("QUICKBOOKS-CLIENT-SECRET") json := JsonObject_Ref.html">chilkat.NewJsonObject() json.UpdateString("token",*jsonToken.StringOf("access_token")) url := "https://developer.api.intuit.com/v2/oauth2/tokens/revoke" resp := HttpResponse_Ref.html">chilkat.NewHttpResponse() success = http.HttpJson("POST",url,json,"application/json",resp) if success == false { fmt.Println(http.LastErrorText()) jsonToken.DisposeJsonObject() http.DisposeHttp() json.DisposeJsonObject() resp.DisposeHttpResponse() return } fmt.Println("Response status code = ", resp.StatusCode()) fmt.Println("Response body:") fmt.Println(resp.BodyStr()) jsonToken.DisposeJsonObject() http.DisposeHttp() json.DisposeJsonObject() resp.DisposeHttpResponse() |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.