Sample code for 30+ languages & platforms
Tcl

VoiceBase -- Retrieve Plain Text Transcript

See more VoiceBase Examples

Retrieves a plain text transcript for a media file.

Chilkat Tcl Downloads

Tcl

load ./chilkat.dll

# This example assumes the Chilkat HTTP API to have been previously unlocked.
# See Global Unlock Sample for sample code.

# Insert your Bearer token here:
set accessToken "VOICEBASE_TOKEN"

set http [new_CkHttp]

# Add the access (bearer) token to the request, which is a header
# having the following format:
# Authorization: Bearer <userAccessToken>
set sbAuth [new_CkStringBuilder]

CkStringBuilder_Append $sbAuth "Bearer "
CkStringBuilder_Append $sbAuth $accessToken
CkHttp_SetRequestHeader $http "Authorization" [CkStringBuilder_getAsString $sbAuth]

set sbUrl [new_CkStringBuilder]

CkStringBuilder_Append $sbUrl "https://apis.voicebase.com/v2-beta/media/$MEDIA_ID/transcripts/latest"
set replaceCount [CkStringBuilder_Replace $sbUrl "$MEDIA_ID" "f9b9bb88-d52c-4960-bcef-d516a9f85594"]

CkHttp_put_Accept $http "text/plain"

set strText [CkHttp_quickGetStr $http [CkStringBuilder_getAsString $sbUrl]]
if {[CkHttp_get_LastMethodSuccess $http] != 1} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkStringBuilder $sbAuth
    delete_CkStringBuilder $sbUrl
    exit
}

puts "Response status code = [CkHttp_get_LastStatus $http]"
puts "$strText"

if {[CkHttp_get_LastStatus $http] != 200} then {
    puts "Failed"
} else {
    puts "Success"
}


delete_CkHttp $http
delete_CkStringBuilder $sbAuth
delete_CkStringBuilder $sbUrl