我正在尝试使用hello.js.
登录网站我收到了用户名,但我无法获得用户电子邮件ID。我怎么能得到这个?
我关注this link。
这是我的代码:
<script src="hello.js" ></script>
<script>
hello.init({
google: "742850147964-r4pfusmgmp2mtfbngh387e30k3692p79.apps.googleusercontent.com"
}, {redirect_uri: 'index.php'});
hello.on('auth.login', function(auth) {
// Call user information, for the given network
hello(auth.network).api('/me').then(function(r) {
console.log("r.email = "+r.email);
console.log("r.name== = "+r.name);
});
});
</script>
答案 0 :(得分:2)
我通过简单改变hello.js解决了我的问题。
谷歌的: -
scope: {
basic: 'https://www.googleapis.com/auth/plus.me profile',
}
到
scope: {
basic: 'https://www.googleapis.com/auth/userinfo.email',
}
对于facebook: -
scope: {
basic: 'public_profile',
}
到
scope: {
basic: 'public_profile,email',
}
答案 1 :(得分:0)