从私有存储库中检索 GitHub 内容在 Firefox 中不起作用

Retrieve GitHub contents from private repo not working in Firefox

提问人:Paul Berger 提问时间:11/17/2023 更新时间:11/17/2023 访问量:13

问:

以下代码在 Chrome 中完美运行,但在 Firefox 中无法运行。

<!DOCTYPE html>
<html lang="en">
  <head>
    <script type="module">
      import axios from 'https://cdn.skypack.dev/axios';

      const response = await axios.get('https://api.github.com/repos/OWNER/REPO/contents/PATH', {
        headers: {
          Authorization: `token <TOKEN>`,
          Accept: 'application/vnd.github.raw',
        },
      });

      if (response.status === 200) {
        console.log(response.data);
      } else {
        console.log(response.statusText);
        console.error('Failed to fetch content:', response.statusText);
      }
    </script>
  </head>
  <body>
  </body>
</html>

我怎样才能让它在Firefox中工作?!我需要能够获取文件的内容。

Firefox中的“Fetch”工作方式完全不同?我怎样才能在Firefox中实现同样的事情?!

github firefox axios httprequest github-api

评论


答: 暂无答案