在网络上将视频分享到 TikTok 总是 return 错误请求

Sharing Video to TikTok on the Web always return Bad Request

我按照此处的文档 https://developers.tiktok.com/doc/web-video-kit-with-web 使用登录工具包登录,然后我成功获得了帐户的 access_token 和 open_id。

现在我按照文档中的说明从 ExpressJS 服务器上传了一个视频:

const FormData = require('form-data');
const got = require('got');
const axios = require('axios');

//Video Upload Function
async function uploadVideoToTikTok(){
let tikTokAccessToken = //Retrieved from database;
let openId = //Retrieved from database;
let shareUrl = `https://open-api.tiktok.com/share/video/upload/?open_id=${openId}&access_token=${tikTokAccessToken}`;
                
let video = got.stream(mediaUrl); //Media Url is similar to https://firebasestorage.com/adadadadadadad.mp4
let tikTokShareform = new FormData();
tikTokShareform.append("video", video);
try {
     let { data } = await axios.post(shareUrl, tikTokShareform);
     console.log(`TikTok Upload Result=${JSON.stringify(data, null, 2)}`);
   } catch (e) {
    console.log(`TikTok Video Upload Error`);
    console.log(e);
   }
}

但我不断得到的回复是

'Bad Request'

没有提供更多信息让我知道错误请求的原因。

我还注意到文档没有提供任何关于如何为视频提供描述或标题的信息。

任何关于如何解决这个问题的想法都将不胜感激。

谢谢

问题可能是由于您的 HTTP POST 请求中缺少 Content-Type header,您应该尝试类似的操作:

let { data } = await axios.post(
  shareUrl,
  {
    headers: {
      "Content-Type": "multipart/form-data",
    },
  },
  tikTokShareform,
);

或者,甚至更好:

let { data } = await axios.post(
  shareUrl,
  {
    headers: tikTokShareform.getHeaders(),
  },
  tikTokShareform,
);