Dart
Dart
GetHarvest - Test Personal Access Token
See more GetHarvest Examples
Demonstrates how to test your GetHarvest Personal Access TokenChilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final http = CkHttp();
http.setRequestHeader('User-Agent', 'Harvest API Example');
http.setRequestHeader('Harvest-Account-ID', 'ACCOUNT_ID');
http.setRequestHeader('Authorization', 'Bearer ACCESS_TOKEN');
final sbResponseBody = CkStringBuilder();
try {
http.quickGetSb('https://api.harvestapp.com/api/v2/users/me.json', sbResponseBody);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
final jResp = CkJsonObject();
jResp.loadSb(sbResponseBody);
jResp.emitCompact = false;
print('Response Body:');
print(jResp.emit());
final respStatusCode = http.lastStatus;
print('Response Status Code = $respStatusCode');
if (respStatusCode >= 400) {
print('Response Header:');
print(http.lastResponseHeader);
return;
}
// Sample JSON response:
// {
// "id": 2826142,
// "first_name": "Joe",
// "last_name": "Johnson",
// "email": "joe@example.com",
// "telephone": "",
// "timezone": "Central Time (US & Canada)",
// "weekly_capacity": 126000,
// "has_access_to_all_future_projects": false,
// "is_contractor": false,
// "is_admin": true,
// "is_project_manager": false,
// "can_see_rates": true,
// "can_create_projects": true,
// "can_create_invoices": true,
// "is_active": true,
// "created_at": "2019-06-06T15:57:58Z",
// "updated_at": "2019-06-06T15:58:32Z",
// "default_hourly_rate": 175.0,
// "cost_rate": 60.0,
// "roles": [
// "role1",
// "role2"
// ],
// "avatar_url": "https://d3s3969qhosaug.cloudfront.net/default-avatars/4d46.png?1559836678"
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
var i = 0;
var strVal = '';
final id = jResp.intOf('id');
final firstName = jResp.stringOf('first_name');
final lastName = jResp.stringOf('last_name');
final email = jResp.stringOf('email');
final telephone = jResp.stringOf('telephone');
final timezone = jResp.stringOf('timezone');
final weeklyCapacity = jResp.intOf('weekly_capacity');
final createdAt = jResp.stringOf('created_at');
final updatedAt = jResp.stringOf('updated_at');
final defaultHourlyRate = jResp.stringOf('default_hourly_rate');
final costRate = jResp.stringOf('cost_rate');
final avatarUrl = jResp.stringOf('avatar_url');
i = 0;
final countI = jResp.sizeOfArray('roles');
while (i < countI) {
jResp.i = i;
strVal = jResp.stringOf('roles[i]');
i++;
}
}