Dart
Dart
VoiceBase -- Retrieve Plain Text Transcript
See more VoiceBase Examples
Retrieves a plain text transcript for a media file.Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example assumes the Chilkat HTTP API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// Insert your Bearer token here:
final accessToken = 'VOICEBASE_TOKEN';
final http = CkHttp();
// Add the access (bearer) token to the request, which is a header
// having the following format:
// Authorization: Bearer <userAccessToken>
final sbAuth = CkStringBuilder();
sbAuth.append('Bearer ');
sbAuth.append(accessToken);
http.setRequestHeader('Authorization', sbAuth.getAsString());
final sbUrl = CkStringBuilder();
sbUrl.append('https://apis.voicebase.com/v2-beta/media/\$MEDIA_ID/transcripts/latest');
final replaceCount = sbUrl.replace('\$MEDIA_ID', 'f9b9bb88-d52c-4960-bcef-d516a9f85594');
http.accept = 'text/plain';
final String strText;
try {
strText = http.quickGetStr(sbUrl.getAsString());
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
print('Response status code = ${http.lastStatus}');
print(strText);
if (http.lastStatus != 200) {
print('Failed');
} else {
print('Success');
}
}