|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (C) VoiceBase -- Retrieve Plain Text TranscriptRetrieves a plain text transcript for a media file. 
 #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); } | ||||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.