Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Android™) Bluzone Get Project DetailsGet a project by its id For more information, see https://bluzone.io/portal/static/docs/index.html#_getprojectbyprojectid
// 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; // Implements the following CURL command: // curl -X GET \ // https://bluzone.io/portal/papis/v1/projects/YOUR_PROJECT_ID_HERE/ \ // -H 'bzid: YOUR_API_KEY_HERE' http.SetRequestHeader("bzid","YOUR_API_KEY_HERE"); CkStringBuilder sbResponseBody = new CkStringBuilder(); success = http.QuickGetSb("https://bluzone.io/portal/papis/v1/projects/YOUR_PROJECT_ID_HERE/",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: // { // "projectId": 36845, // "name": "My Project", // "description": "Default Project for admin@chilkatsoft.com, created on Thu Jun 06 17:18:11 GMT 2019.", // "status": null, // "owner": { // "username": "admin@chilkatsoft.com", // "emailAddress": null // }, // "defaultUuidValue": "1b4b243c-59aa-405f-90b5-0c434cac1345", // "enableLocusMaps": false, // "mapProviderType": "GOOGLE", // "enableAdvancedPackets": false, // "enabledPacketTypes": "sBv2", // "enableDataUnload": false, // "enableScanConsumer": false, // "enablePolicyConsumer": false, // "enableLocationConsumer": false, // "enableEmail": true, // "firmwareUpdateStrategy": "MANUAL", // "deviceJobConcurrency": -1, // "mapProviderApiKey": null, // "wakeupUuid": null, // "reportEmailList": [ // ], // "reportTimezone": "Etc/GMT", // "language": "en", // "blufiHostnameNaming": "DEFAULT", // "dateCreated": 1559841491000, // "dateUpdated": 1559841491000, // "enableStreamProducer": true, // "enableMetricStorage": true // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON int projectId; String name; String description; String status; String ownerUsername; String ownerEmailAddress; String defaultUuidValue; boolean enableLocusMaps; String mapProviderType; boolean enableAdvancedPackets; String enabledPacketTypes; boolean enableDataUnload; boolean enableScanConsumer; boolean enablePolicyConsumer; boolean enableLocationConsumer; boolean enableEmail; String firmwareUpdateStrategy; int deviceJobConcurrency; String mapProviderApiKey; String wakeupUuid; String reportTimezone; String language; String blufiHostnameNaming; int dateCreated; int dateUpdated; boolean enableStreamProducer; boolean enableMetricStorage; int i; int count_i; projectId = jResp.IntOf("projectId"); name = jResp.stringOf("name"); description = jResp.stringOf("description"); status = jResp.stringOf("status"); ownerUsername = jResp.stringOf("owner.username"); ownerEmailAddress = jResp.stringOf("owner.emailAddress"); defaultUuidValue = jResp.stringOf("defaultUuidValue"); enableLocusMaps = jResp.BoolOf("enableLocusMaps"); mapProviderType = jResp.stringOf("mapProviderType"); enableAdvancedPackets = jResp.BoolOf("enableAdvancedPackets"); enabledPacketTypes = jResp.stringOf("enabledPacketTypes"); enableDataUnload = jResp.BoolOf("enableDataUnload"); enableScanConsumer = jResp.BoolOf("enableScanConsumer"); enablePolicyConsumer = jResp.BoolOf("enablePolicyConsumer"); enableLocationConsumer = jResp.BoolOf("enableLocationConsumer"); enableEmail = jResp.BoolOf("enableEmail"); firmwareUpdateStrategy = jResp.stringOf("firmwareUpdateStrategy"); deviceJobConcurrency = jResp.IntOf("deviceJobConcurrency"); mapProviderApiKey = jResp.stringOf("mapProviderApiKey"); wakeupUuid = jResp.stringOf("wakeupUuid"); reportTimezone = jResp.stringOf("reportTimezone"); language = jResp.stringOf("language"); blufiHostnameNaming = jResp.stringOf("blufiHostnameNaming"); dateCreated = jResp.IntOf("dateCreated"); dateUpdated = jResp.IntOf("dateUpdated"); enableStreamProducer = jResp.BoolOf("enableStreamProducer"); enableMetricStorage = jResp.BoolOf("enableMetricStorage"); i = 0; count_i = jResp.SizeOfArray("reportEmailList"); while (i < count_i) { jResp.put_I(i); 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." } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.