C
C
GetHarvest - Test Personal Access Token
See more GetHarvest Examples
Demonstrates how to test your GetHarvest Personal Access TokenChilkat C Downloads
#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
#include <C_CkJsonObject.h>
void ChilkatSample(void)
{
BOOL success;
HCkHttp http;
HCkStringBuilder sbResponseBody;
HCkJsonObject jResp;
int respStatusCode;
int id;
const char *first_name;
const char *last_name;
const char *email;
const char *telephone;
const char *timezone;
int weekly_capacity;
BOOL has_access_to_all_future_projects;
BOOL is_contractor;
BOOL is_admin;
BOOL is_project_manager;
BOOL can_see_rates;
BOOL can_create_projects;
BOOL can_create_invoices;
BOOL is_active;
const char *created_at;
const char *updated_at;
const char *default_hourly_rate;
const char *cost_rate;
const char *avatar_url;
int i;
int count_i;
const char *strVal;
success = FALSE;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
CkHttp_SetRequestHeader(http,"User-Agent","Harvest API Example");
CkHttp_SetRequestHeader(http,"Harvest-Account-ID","ACCOUNT_ID");
CkHttp_SetRequestHeader(http,"Authorization","Bearer ACCESS_TOKEN");
sbResponseBody = CkStringBuilder_Create();
success = CkHttp_QuickGetSb(http,"https://api.harvestapp.com/api/v2/users/me.json",sbResponseBody);
if (success != TRUE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
return;
}
jResp = CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,FALSE);
printf("Response Body:\n");
printf("%s\n",CkJsonObject_emit(jResp));
respStatusCode = CkHttp_getLastStatus(http);
printf("Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
printf("Response Header:\n");
printf("%s\n",CkHttp_lastResponseHeader(http));
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
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
id = CkJsonObject_IntOf(jResp,"id");
first_name = CkJsonObject_stringOf(jResp,"first_name");
last_name = CkJsonObject_stringOf(jResp,"last_name");
email = CkJsonObject_stringOf(jResp,"email");
telephone = CkJsonObject_stringOf(jResp,"telephone");
timezone = CkJsonObject_stringOf(jResp,"timezone");
weekly_capacity = CkJsonObject_IntOf(jResp,"weekly_capacity");
has_access_to_all_future_projects = CkJsonObject_BoolOf(jResp,"has_access_to_all_future_projects");
is_contractor = CkJsonObject_BoolOf(jResp,"is_contractor");
is_admin = CkJsonObject_BoolOf(jResp,"is_admin");
is_project_manager = CkJsonObject_BoolOf(jResp,"is_project_manager");
can_see_rates = CkJsonObject_BoolOf(jResp,"can_see_rates");
can_create_projects = CkJsonObject_BoolOf(jResp,"can_create_projects");
can_create_invoices = CkJsonObject_BoolOf(jResp,"can_create_invoices");
is_active = CkJsonObject_BoolOf(jResp,"is_active");
created_at = CkJsonObject_stringOf(jResp,"created_at");
updated_at = CkJsonObject_stringOf(jResp,"updated_at");
default_hourly_rate = CkJsonObject_stringOf(jResp,"default_hourly_rate");
cost_rate = CkJsonObject_stringOf(jResp,"cost_rate");
avatar_url = CkJsonObject_stringOf(jResp,"avatar_url");
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"roles");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"roles[i]");
i = i + 1;
}
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
}