1

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

也类似于发布的里程碑,但我如何将照片附加/上传到它。

我正在尝试使用 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())
                        -......

但是它发布了里程碑而没有发布照片

4

1 回答 1

0

看来这是 Facebook Graph API 的(故意?)限制。请参阅通过 Graph API 将图像上传到 Facebook Wall/Feed

您可以将图像数据直接发布到相册,但提要端点只接受图像 URL。

于 2013-08-25T13:34:03.600 回答