首页 > 解决方案 > 我可以使用 GitHub API 提交视频吗?

问题描述

我需要使用 GitHub API 上传视频 (.mp4)。我找到了一种上传文本文件的方法。像这样的东西:

发布 /repos/:user/:repo/git/trees

{
  "base_tree": "{{sha-base-tree}}",
  "tree": [
    {
      "path": "NewFile1.txt",
      "mode": "100644",
      "type": "blob",
      "content": "This is NewFile1."
    }
  ]
}

在“内容”部分需要粘贴文本文件的文本。但是如果我有一个 .mp4 文件呢?如何上传?我在谷歌上找不到任何关于它的信息。谢谢。

标签: githubcommitgithub-apipost-commit

解决方案


推荐阅读