Sample code for 30+ languages & platforms
Android™

Zoom API - Create JWT to Authenticate API Requests

See more Zoom Examples

Creates a JWT for the Zoom API.

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.

    //  Use your API key and secret here...
    String apiKey = "o9rw6Gq0RnqlkfaSqtCMOA";
    String apiSecret = "UslmE23Kjh7at9z3If1xAHEyLmPDNxvxQrjR";

    //  Create a JWT to authenticate Zoom API requests.
    CkJwt jwt = new CkJwt();

    CkJsonObject jose = new CkJsonObject();
    success = jose.UpdateString("alg","HS256");
    success = jose.UpdateString("typ","JWT");

    //  Build claims to look like this:
    //  {"aud":null,"iss":"o9rw6Gq0RnqlkfaSqtCMOA","exp":1627651762,"iat":1627646363}
    CkJsonObject claims = new CkJsonObject();
    success = claims.UpdateString("iss",apiKey);
    success = claims.UpdateNull("aud");

    //  Set the timestamp of when the JWT was created to now.
    int curDateTime = jwt.GenNumericDate(0);
    success = claims.AddIntAt(-1,"iat",curDateTime);

    //  Set the timestamp defining an expiration time (end time) for the token
    //  to be now + 1 month(3600 * 24 * 30 seconds)
    int oneMonth = 3600 * 24 * 30;
    success = claims.AddIntAt(-1,"exp",curDateTime + oneMonth);

    //  Produce the smallest possible JWT:
    jwt.put_AutoCompact(true);

    String strJwt = jwt.createJwt(jose.emit(),claims.emit(),apiSecret);

    Log.i(TAG, strJwt);

    //  Let's test the JWT to by sending the following request:

    //  curl --request GET \
    //    --url 'https://api.zoom.us/v2/users?status=active&page_size=30&page_number=1' \
    //    --header 'authorization: Bearer { your_token }' \
    //    --header 'content-type: application/json

    CkHttp http = new CkHttp();

    //  Implements the following CURL command:

    //  curl --request GET \
    //    --url 'https://api.zoom.us/v2/users?status=active&page_size=30&page_number=1' \
    //    --header 'authorization: Bearer { your_token }' \
    //    --header 'content-type: application/json

    //  Use the following online tool to generate HTTP code from a CURL command
    //  Convert a cURL Command to HTTP Source Code

    http.SetRequestHeader("content-type","application/json");
    //  Adds the "Authorization: Bearer { your_token }" header.
    http.put_AuthToken(strJwt);

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = http.QuickGetSb("https://api.zoom.us/v2/users?status=active&page_size=30&page_number=1",sbResponseBody);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    CkJsonObject jResp = new CkJsonObject();
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    Log.i(TAG, "Response Body:");
    Log.i(TAG, jResp.emit());

    int respStatusCode = http.get_LastStatus();
    Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
    if (respStatusCode >= 400) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, http.lastHeader());
        Log.i(TAG, "Failed.");
        return;
        }

    //  Sample output:

    //  {
    //    "page_count": 1,
    //    "page_number": 1,
    //    "page_size": 30,
    //    "total_records": 1,
    //    "users": [
    //      {
    //        "id": "s8uAiMJiRmS_-eu1yOhKlg",
    //        "first_name": "Joe",
    //        "last_name": "Example",
    //        "email": "joe@example.com",
    //        "type": 1,
    //        "pmi": 5224934114,
    //        "timezone": "America/Chicago",
    //        "verified": 1,
    //        "created_at": "2021-07-30T11:56:37Z",
    //        "last_login_time": "2021-07-30T11:56:37Z",
    //        "language": "en-US",
    //        "phone_number": "",
    //        "status": "active",
    //        "role_id": "0"
    //      }
    //    ]
    //  }

    //  Sample code for parsing the JSON response...
    //  Use the following online tool to generate parsing code from sample JSON:
    //  Generate Parsing Code from JSON

    String id;
    String first_name;
    String last_name;
    String email;
    int v_type;
    int pmi;
    String timezone;
    int verified;
    String created_at;
    String last_login_time;
    String language;
    String phone_number;
    String status;
    String role_id;

    int page_count = jResp.IntOf("page_count");
    int page_number = jResp.IntOf("page_number");
    int page_size = jResp.IntOf("page_size");
    int total_records = jResp.IntOf("total_records");
    int i = 0;
    int count_i = jResp.SizeOfArray("users");
    while (i < count_i) {
        jResp.put_I(i);
        id = jResp.stringOf("users[i].id");
        first_name = jResp.stringOf("users[i].first_name");
        last_name = jResp.stringOf("users[i].last_name");
        email = jResp.stringOf("users[i].email");
        v_type = jResp.IntOf("users[i].type");
        pmi = jResp.IntOf("users[i].pmi");
        timezone = jResp.stringOf("users[i].timezone");
        verified = jResp.IntOf("users[i].verified");
        created_at = jResp.stringOf("users[i].created_at");
        last_login_time = jResp.stringOf("users[i].last_login_time");
        language = jResp.stringOf("users[i].language");
        phone_number = jResp.stringOf("users[i].phone_number");
        status = jResp.stringOf("users[i].status");
        role_id = jResp.stringOf("users[i].role_id");
        i = i + 1;
        }


  }

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