Modifies a reply on a comment. This example modifies reply (id="AAAABg76H9g") on comment (id="AAAABg7tSGw") on the file (id= "0B5drHSd5ZHwgc3RhcnRlcl9maWxlX2Rhc2hlclYw")
#include <C_CkRestW.h>
#include <C_CkOAuth2W.h>
#include <C_CkJsonObjectW.h>
#include <C_CkStringBuilderW.h>
void ChilkatSample(void)
{
HCkRestW rest;
BOOL success;
HCkOAuth2W oauth2;
HCkJsonObjectW jsonReq;
HCkStringBuilderW sbReq;
HCkStringBuilderW sbJson;
HCkJsonObjectW json;
const wchar_t *modifiedTime;
const wchar_t *authorKind;
const wchar_t *authorDisplayName;
const wchar_t *authorPhotoLink;
BOOL authorMe;
const wchar_t *content;
rest = CkRestW_Create();
// Provide a previously obtained OAuth2 access token.
oauth2 = CkOAuth2W_Create();
CkOAuth2W_putAccessToken(oauth2,L"OAUTH2_ACCESS_TOKEN");
CkRestW_SetAuthOAuth2(rest,oauth2);
success = CkRestW_Connect(rest,L"www.googleapis.com",443,TRUE,TRUE);
if (success != TRUE) {
wprintf(L"%s\n",CkRestW_lastErrorText(rest));
CkRestW_Dispose(rest);
CkOAuth2W_Dispose(oauth2);
return;
}
CkRestW_AddQueryParam(rest,L"fields",L"modifiedTime,author,content,action");
// The following code creates the JSON request body.
// The JSON created by this code is shown below.
jsonReq = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(jsonReq,L"content",L"This is the 1st reply to this comment...");
sbReq = CkStringBuilderW_Create();
CkJsonObjectW_EmitSb(jsonReq,sbReq);
CkRestW_AddHeader(rest,L"Content-Type",L"application/json");
sbJson = CkStringBuilderW_Create();
success = CkRestW_FullRequestSb(rest,L"PATCH",L"/drive/v3/files/0B5drHSd5ZHwgc3RhcnRlcl9maWxlX2Rhc2hlclYw/comments/AAAABg7tSGw/replies/AAAABg76H9g",sbReq,sbJson);
if (success != TRUE) {
wprintf(L"%s\n",CkRestW_lastErrorText(rest));
CkRestW_Dispose(rest);
CkOAuth2W_Dispose(oauth2);
CkJsonObjectW_Dispose(jsonReq);
CkStringBuilderW_Dispose(sbReq);
CkStringBuilderW_Dispose(sbJson);
return;
}
if (CkRestW_getResponseStatusCode(rest) != 200) {
wprintf(L"Received error response code: %d\n",CkRestW_getResponseStatusCode(rest));
wprintf(L"Response body:\n");
wprintf(L"%s\n",CkStringBuilderW_getAsString(sbJson));
CkRestW_Dispose(rest);
CkOAuth2W_Dispose(oauth2);
CkJsonObjectW_Dispose(jsonReq);
CkStringBuilderW_Dispose(sbReq);
CkStringBuilderW_Dispose(sbJson);
return;
}
json = CkJsonObjectW_Create();
CkJsonObjectW_LoadSb(json,sbJson);
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
modifiedTime = CkJsonObjectW_stringOf(json,L"modifiedTime");
authorKind = CkJsonObjectW_stringOf(json,L"author.kind");
authorDisplayName = CkJsonObjectW_stringOf(json,L"author.displayName");
authorPhotoLink = CkJsonObjectW_stringOf(json,L"author.photoLink");
authorMe = CkJsonObjectW_BoolOf(json,L"author.me");
content = CkJsonObjectW_stringOf(json,L"content");
wprintf(L"Example Completed.\n");
CkRestW_Dispose(rest);
CkOAuth2W_Dispose(oauth2);
CkJsonObjectW_Dispose(jsonReq);
CkStringBuilderW_Dispose(sbReq);
CkStringBuilderW_Dispose(sbJson);
CkJsonObjectW_Dispose(json);
}
{
"content": "This is the 1st reply to this comment..."
}
{
"modifiedTime": "2017-11-13T19:37:13.089Z",
"author": {
"kind": "drive#user",
"displayName": "Matt Fausey",
"photoLink": "//ssl.gstatic.com/s2/profiles/images/silhouette96.png",
"me": true
},
"content": "This is the 1st reply to this comment..."
}