【发布时间】:2014-03-18 02:22:02
【问题描述】:
我想在用户时间线上发布他们当前的活动以及他们上传的照片。
例如:
我投了“xyz 电影”的票。
..image1.. ..image2.. ..image3..
问题:可以多张照片吗?如果是,照片是否有限制。我需要展示 3-5 张照片
类似于糖果粉碎传奇游戏帖子: (仅供参考,不完全一样。好奇想知道这是不是两个帖子?)
我们可以使用哪个 api?
FB.ui feed api 可以做到这一点吗?
FB.ui(
{
method: 'feed',
to:'the Facebook ID of the person you wanna send',
name: 'Facebook Dialogs',
link: 'http://emplido.com',
picture: 'http://fbrell.com/f8.jpg',
caption: 'Reference Documentation',
description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);
【问题讨论】:
标签: facebook facebook-graph-api facebook-timeline