Sample code for 30+ languages & platforms
Android™

Quickbooks Revoke OAuth2 Token

See more QuickBooks Examples

Demonstrates how to revoke a QuickBooks OAuth2 access token.

Chilkat Android™ Downloads

Android™
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    boolean 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 access token for QuickBooks.

    CkJsonObject jsonToken = new CkJsonObject();
    success = jsonToken.LoadFile("qa_data/tokens/qb-access-token.json");
    if (success != true) {
        Log.i(TAG, "Failed to load qb-access-token.json");
        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

    CkHttp http = new CkHttp();
    http.SetRequestHeader("Accept","application/json");
    http.put_BasicAuth(true);
    http.put_Login("QUICKBOOKS-CLIENT-ID");
    http.put_Password("QUICKBOOKS-CLIENT-SECRET");

    CkJsonObject json = new CkJsonObject();
    json.UpdateString("token",jsonToken.stringOf("access_token"));

    String url = "https://developer.api.intuit.com/v2/oauth2/tokens/revoke";
    CkHttpResponse resp = new CkHttpResponse();
    success = http.HttpJson("POST",url,json,"application/json",resp);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    Log.i(TAG, "Response status code = " + String.valueOf(resp.get_StatusCode()));
    Log.i(TAG, "Response body:");
    Log.i(TAG, resp.bodyStr());

  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}