如何在Meteor账户中请求额外的oauth范围

时间:2014-03-03 20:10:54

标签: oauth meteor oauth-2.0 google-drive-api

我正在使用account-google来验证用户使用Meteor编写的Google云端硬盘应用。我想请求https://www.googleapis.com/auth/drive范围以及默认请求的user.email和user.profile范围。我认为已经通过'requestPermissions'看到了这一点,但我无法让它工作。

1 个答案:

答案 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}});
}