我想在Google API
JavaScript中使用多个范围.
我想要做的是让用户Email&名称.
我想要做的是让用户Email&名称.
我可以从范围获得的名称:https://www.googleapis.com/auth/plus.me
我可以从范围获得电子邮件:https://www.googleapis.com/auth/userinfo.email
但是如何在同一个应用程序中使用它们呢?
我的代码是:
scopes = 'https://www.googleapis.com/auth/plus.me https://www.googleapis.com/auth/userinfo.email'; gapi.signin.render('StartGoogleBtn',{ 'callback': 'onSignInCallback','clientid': clientId,'cookiepolicy': 'single_host_origin','scope': scopes });
应该是什么范围?谢谢 :)