Sample code for 30+ languages & platforms
Android™

Aruba Fatturazione Elettronica signin

See more Aruba Fatturazione Examples

The method is used to request a security token. This token is required to invoke the methods of the various Electronic Invoicing servers (Resource Servers) that are protected by the system.

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 assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();

    // Implements the following CURL command:

    // curl -X POST https://auth.fatturazioneelettronica.aruba.it/auth/signin \
    //   -H "Content-Type: application/x-www-form-urlencoded;charset=UTF-8" \
    //   -d 'grant_type=password&username=Utente&password=Password'

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

    CkHttpRequest req = new CkHttpRequest();
    req.put_HttpVerb("POST");
    req.put_Path("/auth/signin");
    req.put_ContentType("application/x-www-form-urlencoded");
    req.AddParam("grant_type","password");
    req.AddParam("username","Utente");
    req.AddParam("password","Password");

    CkHttpResponse resp = new CkHttpResponse();
    success = http.HttpReq("https://auth.fatturazioneelettronica.aruba.it/auth/signin",req,resp);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

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

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

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

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "access_token": "29dba5b2e749e403",
    //   "token_type": "bearer",
    //   "expires_in": 1800,
    //   "refresh_token": "5da9e6c31c8b9b24",
    //   "userName": "Utente",
    //   "as:client_id": "Auth",
    //   ".issued": "Fri, 10 Jul 2020 07:20:00 GMT",
    //   ".expires": "Fri, 10 Jul 2020 07:50:00 GMT"
    // }

    // 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 access_token = jResp.stringOf("access_token");
    String token_type = jResp.stringOf("token_type");
    int expires_in = jResp.IntOf("expires_in");
    String refresh_token = jResp.stringOf("refresh_token");
    String userName = jResp.stringOf("userName");
    String as_client_id = jResp.stringOf("as:client_id");
    String v_issued = jResp.stringOf("\".issued\"");
    String v_expires = jResp.stringOf("\".expires\"");

  }

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