Unicode C
Unicode C
X.com Create Post
See more X Examples
Causes the User to create a Post under the authorized account.Chilkat Unicode C Downloads
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>
void ChilkatSample(void)
{
BOOL success;
HCkHttpW http;
HCkJsonObjectW json;
HCkJsonObjectW jsonToken;
HCkHttpResponseW resp;
HCkStringBuilderW sbResponseBody;
HCkJsonObjectW jResp;
int respStatusCode;
const wchar_t *Id;
const wchar_t *Text;
success = FALSE;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Implements the following CURL command:
// curl -X POST "https://api.x.com/2/tweets" \
// -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
// -H "Content-Type: application/json" \
// -d '{"text":"Hello, X.com! This is my first post using the API."}'
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "text": "Hello, X.com! This is my first post using the API."
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"text",L"Hello, X.com! This is my first post using the API.");
// Adds the "Authorization: Bearer YOUR_ACCESS_TOKEN" header.
// Get our access token.
jsonToken = CkJsonObjectW_Create();
success = CkJsonObjectW_LoadFile(jsonToken,L"qa_data/tokens/x.json");
if (success != TRUE) {
wprintf(L"Failed to load x.json\n");
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
CkJsonObjectW_Dispose(jsonToken);
return;
}
// Adds the "Authorization: Bearer <token>" header.
CkHttpW_putAuthToken(http,CkJsonObjectW_stringOf(jsonToken,L"access_token"));
resp = CkHttpResponseW_Create();
success = CkHttpW_HttpJson(http,L"POST",L"https://api.x.com/2/tweets",json,L"application/json",resp);
if (success == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
CkJsonObjectW_Dispose(jsonToken);
CkHttpResponseW_Dispose(resp);
return;
}
sbResponseBody = CkStringBuilderW_Create();
CkHttpResponseW_GetBodySb(resp,sbResponseBody);
jResp = CkJsonObjectW_Create();
CkJsonObjectW_LoadSb(jResp,sbResponseBody);
CkJsonObjectW_putEmitCompact(jResp,FALSE);
wprintf(L"Response Body:\n");
wprintf(L"%s\n",CkJsonObjectW_emit(jResp));
respStatusCode = CkHttpResponseW_getStatusCode(resp);
wprintf(L"Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
wprintf(L"Response Header:\n");
wprintf(L"%s\n",CkHttpResponseW_header(resp));
wprintf(L"Failed.\n");
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
CkJsonObjectW_Dispose(jsonToken);
CkHttpResponseW_Dispose(resp);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "data": {
// "id": "1346889436626259968",
// "text": "Hello, X.com! This is my first post using the API."
// }
// }
// 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 = CkJsonObjectW_stringOf(jResp,L"data.id");
Text = CkJsonObjectW_stringOf(jResp,L"data.text");
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
CkJsonObjectW_Dispose(jsonToken);
CkHttpResponseW_Dispose(resp);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
}