I have used cal recording content API for integration in js
This give me this type of response not a binary data
How to get binary data from API
It's very urgent please give me a fast replay
I have used cal recording content API for integration in js
This give me this type of response not a binary data
How to get binary data from API
It's very urgent please give me a fast replay
platform.get(contentUri)
.then(function(res) {
return res.response().buffer();
})
.then(function(buffer) {
fs.writeFile("contentFile.mp3", buffer, function(){
console.log("done")
})
})
.catch(function(e){
console.log(e)
})
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.