Description
I have a question about use a third-party closed captioning service.
I’m trying POST from localhost (node.js) to Zoom using the Zoom closed caption API token.
The POST request was successful and the timestamp was returned, but it took quite a while for the closed captions to appear in the meeting room.
Is there a way to display it faster? This location is Japan.
How To Reproduce (If applicable)
My node.js code:
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://us04wmcc.zoom.us/closedcaption?id=759xxxx&ns=SmhCoOD&expire=86400&sparams=id%2Cire&signature=hpyBIbJObQ.EwMAAAF...1IRA&seq=0102331&lang=jp-JP',
'headers': {
'Content-Type': 'text/plain',
},
body: "test closed caption from localhost node js."
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});