Facebook RestFB发布帖子/里程碑以及照片到页面

时间:2013-07-30 15:47:58

标签: facebook restfb

我正在尝试在页面上发布一个Feed以及照片,文字帖子,没有任何错误,但图片没有上传。

与里程碑类似,它会被发布,但我如何附上/上传照片。

我正在尝试使用RestFB在FB上发布里程碑。

FacebookType publishResult = facebookClient.publish("pagename" + "/milestones",
                        FacebookType.class,
                        BinaryAttachment.with("photo", fileToUpload),
                        Parameter.with("title", title),
                        Parameter.with("picture", ""),
                        Parameter.with("description", description),
                        Parameter.with("start_time", new Date())
                        -......

但它发布里程碑而不发布照片

1 个答案:

答案 0 :(得分:0)

看来这是Facebook Graph API的(故意?)限制。见Upload image to Facebook Wall / Feed via Graph API

您可以将图片数据直接发布到相册,但Feed端点只接受图片网址。