Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) Quickbooks Revoke OAuth2 TokenDemonstrates how to revoke a QuickBooks OAuth2 access token. For more information, see https://developer.intuit.com/app/developer/qbo/docs/develop/authentication-and-authorization/oauth-2.0#revoke-token-disconnect
' 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 access token for QuickBooks. Dim jsonToken As Chilkat.JsonObject Set jsonToken = Chilkat.NewJsonObject success = jsonToken.LoadFile("qa_data/tokens/qb-access-token.json") If (success <> True) Then Debug.Print "Failed to load qb-access-token.json" Exit Sub End If ' 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 Dim http As Chilkat.Http Set http = Chilkat.NewHttp http.SetRequestHeader "Accept","application/json" http.BasicAuth = True http.Login = "QUICKBOOKS-CLIENT-ID" http.Password = "QUICKBOOKS-CLIENT-SECRET" Dim json As Chilkat.JsonObject Set json = Chilkat.NewJsonObject Dim success As Boolean success = json.UpdateString("token",jsonToken.StringOf("access_token")) url = "https://developer.api.intuit.com/v2/oauth2/tokens/revoke" Set resp = http.PostJson3(url,"application/json",json) If (http.LastMethodSuccess <> True) Then Debug.Print http.LastErrorText Exit Sub End If Debug.Print "Response status code = "; resp.StatusCode Debug.Print "Response body:" Debug.Print resp.BodyStr |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.