是否可以将照片发布到墙上(而不是为应用程序创建的相册)? 我想过迭代所有用户的专辑并张贴到名为“Wall Photos”的专辑,但想知道是否有更优雅的方式?
由于
答案 0 :(得分:4)
您可以使用Javascript SDK中的FB.ui方法。如果您将图片的网址提供为link
和picture
参数。这将为活动用户创建一个墙贴,其中包含图像,标题,标题,描述等。图像和标题将链接到您提供的任何URL。
FB.ui({
method: 'feed',
name: 'Name Goes Here',
link: 'link to the image',
picture: 'link to the image',
caption: 'caption goes here',
description: 'description goes here',
properties: ''
},
function(response) {
//You can check the response variable to see if the post has been created
}
);
答案 1 :(得分:1)
相册有一种类型,您可以在图谱API中请求/相册时看到,因此您可以检查名称,而不是检查名称。
答案 2 :(得分:0)
最终使用此处列出的方法https://developers.facebook.com/blog/post/526/。 首先上传照片,然后使用object_attachment链接到它。