该Fb.ui
feed
方法打开一个新的小窗口以发布新的提要。我希望它在同一窗口中打开发布请求,并在将重定向发布到相同(上一个)窗口之后。
任何人??
编辑: FB.init({appId: "1234567890", status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
display: 'touch',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
@Nitzan Tomer
是的,这会打开对话框,但这个东西在 iPhone/iPad 中不起作用。如果有效,那么我不想为它打开一个新窗口/标签,但希望整个过程(身份验证和发布)在用户所在的同一窗口中。