我正在尝试使用 facebook.ui 方法在用户 Facebook 时间轴中发布链接,以将帖子提供给 Facebook。对于这个用户,首先需要使用 oauth 登录到 Facebook,这样我才能获取他们的电子邮件。但是 Facebook uiFB.ui(obj,callback);
没有响应FB.login(response,scope);
我的示例代码是:
FB.init({appid, . . });
FB.login(function(response){
if(response.authResponse){ ..(get email code here)
FB.ui(obj, function callback(response) {
// this is not creating any dialog and not showing any error in the console
// am i missing something here?
});
},scope:'scope i need'});