4
我正在使用accounts-google爲用Meteor編寫的Google Drive應用程序對用戶進行身份驗證。我想請求https://www.googleapis.com/auth/drive範圍以及默認請求的user.email和user.profile作用域。我認爲這已經通過'requestPermissions'完成了,但是我無法實現它。如何在流星帳戶中請求額外的oauth範圍
我正在使用accounts-google爲用Meteor編寫的Google Drive應用程序對用戶進行身份驗證。我想請求https://www.googleapis.com/auth/drive範圍以及默認請求的user.email和user.profile作用域。我認爲這已經通過'requestPermissions'完成了,但是我無法實現它。如何在流星帳戶中請求額外的oauth範圍
添加此代碼解決了這一問題:
if (Meteor.isClient){
var scopes = ['https://www.googleapis.com/auth/drive','https://www.googleapis.com/auth/userinfo.email']
Accounts.ui.config({'requestPermissions':{'google':scopes}});
}
感謝你爲這個,我節省了很多時間。 :) – mexitalian