我正在尝试在页面上发布提要以及照片,文本帖子没有任何错误,但图片没有上传。
也类似于发布的里程碑,但我如何将照片附加/上传到它。
我正在尝试使用 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())
-......
但是它发布了里程碑而没有发布照片