use 3rd party Closed Caption service from backend(Node.js) POST request is too late.

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);
});

Hey @jerryliu6399

Thanks for posting on the Zoom Devforum! I am still learning, but I will try my best to help answer your question. :slightly_smiling_face:

Checkout these related threads that may have the answer you are looking for:

If these threads did not help, please let us know by replying back here and someone from the Developer Relations team will get back to you shortly.

Thanks,
DeveloperBot

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.