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;
CkHttpRequest req = new CkHttpRequest();
req.AddParam("grant_type","client_credentials");
CkJsonObject jsonParam2 = new CkJsonObject();
req.AddParam("client_id",jsonParam2.emit());
CkJsonObject jsonParam3 = new CkJsonObject();
req.AddParam("client_secret",jsonParam3.emit());
req.AddHeader("presharedkey","C68FEC13-FE34-4839-89F9-ADB0D678CFE0");
req.AddHeader("posmodelframework","1");
req.AddHeader("posserial","Test_SerialNo1");
req.AddHeader("pososversion","IOS");
CkHttpResponse resp = http.PostUrlEncoded("https://domain.com/connect/token",req);
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
Log.i(TAG, String.valueOf(resp.get_StatusCode()));
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."
}
}
Curl Command
curl -X POST
-H "posserial: Test_SerialNo1"
-H "pososversion: IOS"
-H "posmodelframework: 1"
-H "presharedkey: C68FEC13-FE34-4839-89F9-ADB0D678CFE0"
--data-urlencode 'grant_type=client_credentials'
--data-urlencode 'client_id={{clientId}}'
--data-urlencode 'client_secret={{clientSecret}}'
https://domain.com/connect/token
Postman Collection Item JSON
{
"name": "1. Authenticate POS",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var json = pm.response.json()\r",
"var accesstoken=json.access_token\r",
"pm.environment.set(\"generatedAccessToken\",accesstoken);\r",
"\r",
"pm.test(\"Status code is 200\", function () {\r",
" pm.response.to.have.status(200);\r",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "posserial",
"value": "Test_SerialNo1",
"type": "text"
},
{
"key": "pososversion",
"value": "IOS",
"type": "text"
},
{
"key": "posmodelframework",
"value": "1",
"type": "text",
"disabled": true
},
{
"key": "presharedkey",
"value": "C68FEC13-FE34-4839-89F9-ADB0D678CFE0",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "grant_type",
"value": "client_credentials",
"type": "text"
},
{
"key": "client_id",
"value": "{{clientId}}",
"type": "text"
},
{
"key": "client_secret",
"value": "{{clientSecret}}",
"type": "text"
}
]
},
"url": {
"raw": "{{idSrvBaseUrl}}/connect/token",
"host": [
"{{idSrvBaseUrl}}"
],
"path": [
"connect",
"token"
]
}
},
"response": [
]
}