Jupyter笔记本和Gsheet之间的连接-失败-HttpError 403错误



Im completetly new using Google Cloud Platform and APIs so I don不知道如何解决此问题。我正在尝试将我的Jupyter笔记本与谷歌表单连接,这样我就可以将Jupyter上的数据集连接到Gsheet。

我完成了所有的连接,没有出现任何错误,在我的最后一步中,我使用了以下代码:

from df2gspread import df2gspread as d2g
wks_name = 'Jupyter Manipulated Data'
d2g.upload(df_apn1, wks_name, credentials=credentials, row_names=True)

并收到此错误:

HttpError: <HttpError 403 when requesting https://www.googleapis.com/drive/v3/files/root?fields=id&alt=json returned "Insufficient Permission: Request had insufficient authentication scopes.">

我没有t found any solution here that could fix this and, as I said before, I don。我没有这方面的经验,所以我真的不知道如何解决它。我确保所有本应启用的功能都是可用的,所以这不是问题所在。

有人知道怎么解决这个问题吗?

谢谢

确保创建的凭据具有正确的作用域。使用Google Sheets时有关作用域的具体信息可以在这里找到。

这篇中等水平的文章是一篇非常好的教程。

相关内容

  • 没有找到相关文章

最新更新