Fb.ui
feed
方法打开一个新的小窗口,用于发布新的Feed。我希望它在同一个窗口中打开postiing请求,并在将重定向发布到同一个(上一个)窗口之后。
任何人?
编辑: FB.init({appId:“1234567890”,状态: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中不起作用。如果工作,那么我不想为它打开一个新的窗口/标签,但希望整个过程(auth和发布)在用户所在的同一窗口。
答案 0 :(得分:1)
您可以使用Facebook Developer website上提供的重定向网址方式。
https://www.facebook.com/dialog/feed?
app_id=123050457758183&
link=https://developers.facebook.com/docs/reference/dialogs/&
picture=http://fbrell.com/f8.jpg&
name=Facebook%20Dialogs&
caption=Reference%20Documentation&
description=Using%20Dialogs%20to%20interact%20with%20users.&
redirect_uri=http://www.example.com/response