在Google SpreadSheet上书写

时间:2017-09-08 20:16:07

标签: java google-sheets

我正在尝试关注此Google示例 - https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update

但是,当我运行它时会返回一个未经授权的401错误。在上面的链接中,它表示它需要以下OAuth范围之一:

https://www.googleapis.com/auth/drive
https://www.googleapis.com/auth/drive.file
https://www.googleapis.com/auth/spreadsheets

有谁知道如何在我的java / gradle项目中包含这些范围?

谢谢!

1 个答案:

答案 0 :(得分:1)

您需要添加身份验证,因为您需要通过身份验证才能执行操作。

进行身份验证时,您需要请求访问的范围(权限)。

此处提供了Auth教程here