Sample code for 30+ languages & platforms
Android™

Explicitly set the OAuth2 Access Token

This example shows how to set the AuthToken property using a previously obtained 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;

    //  Assume we previously obtained JSON containing the access token such as this:

    //  	{
    //  	 "access_token": "ya39.Ci-XA_C5bGgRDC3UaD-h0_NeL-DVIQnI2gHtBBBHkZzrwlARkwX6R3O0PCDEzRlfaQ",
    //  	 "token_type": "Bearer",
    //  	 "expires_in": 3600,
    //  	 "refresh_token": "1/r_2c_7jddspcdfesrrfKqfXtqo08D6Q-gUU0DsdfVMsx0c"
    //  	}
    //  

    //  Load the JSON and use the access_token to authenticate an HTTP request.
    CkJsonObject json = new CkJsonObject();
    success = json.LoadFile("c:/someDir/tokens/myToken.json");

    CkHttp http = new CkHttp();

    //  After setting this property, all HTTP requests sent using this object instance
    //  will include the request header: Authorization: Bearer <access_token> 
    http.put_AuthToken(json.stringOf("access_token"));

    //  ...
    //  ...

  }

  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."
  }
}