对于使用Google Apps脚本创建的应用程序之一,我的应用程序中会自动添加一些范围:
https://www.googleapis.com/auth/drive
https://www.googleapis.com/auth/script.external_request
https://www.googleapis.com/auth/script.send_mail
https://www.googleapis.com/auth/spreadsheets
我已根据此documentation执行了OAuth客户端验证的所有步骤。但是,我的验证流程尚未完成,支持小组表示我需要将https://www.googleapis.com/auth/drive.file范围添加到我的项目中。
任何人都知道如何在现有项目中添加/启用https://www.googleapis.com/auth/drive.file范围。
答案 0 :(得分:3)
当您对应用程序进行身份验证时,您应该请求额外的范围
示例
{
...
"oauthScopes": [
" https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/userinfo.email"
],
}
查看文档here