我正在使用OAuth2.0连接到Google并尝试获取用户详细信息。我收到了电子邮件ID等。但是我无法从收到的access_token中获取名称和其他数据。
目前我正在使用scopes - 'https://www.googleapis.com/auth/plus.me','email'
。
我知道有一个范围https://www.googleapis.com/plus/v1/people/me
但是当我使用它时,我得到无效的范围错误。但是,我手动访问https://www.googleapis.com/plus/v1/people/me?access_token=#然后它工作得很好。但是通过API它不起作用:(
任何线索?
我使用Google Api for PHP将$client
实例化为new Google_Client();
。
答案 0 :(得分:1)
使用profile
和email
作为范围,https://www.googleapis.com/plus/v1/people/me
不是范围,而是API。