使用 axios 阅读公开共享的 google 文档内容

Reading publicly shared google docs content using axios

如果可能,我想使用 axios 获取公开共享的 google 文档的内容。我可以使用以下代码使用 Google API 键获取 google sheet 内容。

const url = "https://sheets.googleapis.com/v4/spreadsheets/{SHEET_ID}/?key={API_KEY}&includeGridData=true";
axios.get(url)
    .then(res => {
         // Something
});

我尝试通过以下 URL 获取 google 文档,但它不起作用。 https://docs.googleapis.com/v1/documents/{DOC_ID}/?key={API_KEY}

这样可以吗?

经过一番挖掘,我发现 Google Doc API 应该只使用 API 键来使用 GET 请求的数据 public 根据文档。但截至目前,如果缺少 OAuth 2 访问令牌,则会出现 returns 401 错误。 here.

有一个未解决的问题