我正在使用account-google来验证用户使用Meteor编写的Google云端硬盘应用。我想请求https://www.googleapis.com/auth/drive范围以及默认请求的user.email和user.profile范围。我认为已经通过'requestPermissions'看到了这一点,但我无法让它工作。
答案 0 :(得分:3)
添加此代码解决了问题:
if (Meteor.isClient){
var scopes = ['https://www.googleapis.com/auth/drive','https://www.googleapis.com/auth/userinfo.email']
Accounts.ui.config({'requestPermissions':{'google':scopes}});
}