我正在开发一种功能,允许Facebook用户在我们的网络应用程序中注册。 方法是:
我无法找到合适的偶数处理程序来捕获应用程序授权(允许/禁止事件)以重定向用户。有人可以帮我这个吗?
答案 0 :(得分:0)
使用JS SDK:
FB.login(function(response) {
if (response.status=="connected") {
// authorized the app
} else {
// did not authorized the app
}
}, {
perms: 'email'
});
当用户点击按钮时,触发对此功能的调用。
<div class="fb-login-button">Login</div>