C
C
VoiceBase -- Retrieve Plain Text Transcript
See more VoiceBase Examples
Retrieves a plain text transcript for a media file.Chilkat C Downloads
#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
void ChilkatSample(void)
{
const char *accessToken;
HCkHttp http;
HCkStringBuilder sbAuth;
HCkStringBuilder sbUrl;
int replaceCount;
const char *strText;
// This example assumes the Chilkat HTTP API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// Insert your Bearer token here:
accessToken = "VOICEBASE_TOKEN";
http = CkHttp_Create();
// Add the access (bearer) token to the request, which is a header
// having the following format:
// Authorization: Bearer <userAccessToken>
sbAuth = CkStringBuilder_Create();
CkStringBuilder_Append(sbAuth,"Bearer ");
CkStringBuilder_Append(sbAuth,accessToken);
CkHttp_SetRequestHeader(http,"Authorization",CkStringBuilder_getAsString(sbAuth));
sbUrl = CkStringBuilder_Create();
CkStringBuilder_Append(sbUrl,"https://apis.voicebase.com/v2-beta/media/$MEDIA_ID/transcripts/latest");
replaceCount = CkStringBuilder_Replace(sbUrl,"$MEDIA_ID","f9b9bb88-d52c-4960-bcef-d516a9f85594");
CkHttp_putAccept(http,"text/plain");
strText = CkHttp_quickGetStr(http,CkStringBuilder_getAsString(sbUrl));
if (CkHttp_getLastMethodSuccess(http) != TRUE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbAuth);
CkStringBuilder_Dispose(sbUrl);
return;
}
printf("Response status code = %d\n",CkHttp_getLastStatus(http));
printf("%s\n",strText);
if (CkHttp_getLastStatus(http) != 200) {
printf("Failed\n");
}
else {
printf("Success\n");
}
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbAuth);
CkStringBuilder_Dispose(sbUrl);
}