Chilkat Online Tools

Android / APPIA API / GET USER DASHBOARD DETAILS

Back to Collection Items

// 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);

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean success;

    // Adds the "Authorization: Bearer {{auth}}" header.
    http.put_AuthToken("{{auth}}");
    http.SetRequestHeader("Content-Type","application/json");

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = http.QuickGetSb("https://domain.com/users/dashboard_details",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 JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "success": true,
    //   "data": {
    //     "user_id": "RJ7qynWWe",
    //     "email": "tosinolugbenga@gmail.com",
    //     "names": "Tosin Olugbenga",
    //     "naira_wallet": "0.00",
    //     "providus_account": "4000040054",
    //     "referral_link": "https://Appia.com/register?ref=undefined"
    //   }
    // }

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

    boolean success = jResp.BoolOf("success");
    String User_id = jResp.stringOf("data.user_id");
    String v_Email = jResp.stringOf("data.email");
    String Names = jResp.stringOf("data.names");
    String Naira_wallet = jResp.stringOf("data.naira_wallet");
    String Providus_account = jResp.stringOf("data.providus_account");
    String Referral_link = jResp.stringOf("data.referral_link");

  }

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

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-H "Authorization: Bearer {{auth}}"
https://domain.com/users/dashboard_details

Postman Collection Item JSON

{
  "name": "GET USER DASHBOARD DETAILS",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{auth}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json",
        "disabled": true
      },
      {
        "key": "Authorization",
        "value": "Bearer {{auth}}",
        "disabled": true
      }
    ],
    "url": {
      "raw": "{{url}}/users/dashboard_details",
      "host": [
        "{{url}}"
      ],
      "path": [
        "users",
        "dashboard_details"
      ]
    },
    "description": "User profile update"
  },
  "response": [
    {
      "name": "GET USER DASHBOARD DETAILS",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json",
            "disabled": true
          },
          {
            "key": "Authorization",
            "value": "Bearer {{auth}}",
            "disabled": true
          }
        ],
        "url": {
          "raw": "{{url}}/users/dashboard_details",
          "host": [
            "{{url}}"
          ],
          "path": [
            "users",
            "dashboard_details"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "Cowboy"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "X-Powered-By",
          "value": "Express"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "*"
        },
        {
          "key": "Content-Type",
          "value": "application/json; charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "221"
        },
        {
          "key": "Etag",
          "value": "W/\"dd-/TJsOdEDY8RgDebDUsbizdQV45I\""
        },
        {
          "key": "Date",
          "value": "Tue, 08 Dec 2020 20:16:58 GMT"
        },
        {
          "key": "Via",
          "value": "1.1 vegur"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"success\": true,\n    \"data\": {\n        \"user_id\": \"RJ7qynWWe\",\n        \"email\": \"tosinolugbenga@gmail.com\",\n        \"names\": \"Tosin Olugbenga\",\n        \"naira_wallet\": \"0.00\",\n        \"providus_account\": \"4000040054\",\n        \"referral_link\": \"https://Appia.com/register?ref=undefined\"\n    }\n}"
    }
  ]
}