我可以使用RestFB发布带有说明的视频。我想在视频中添加缩略图。我该怎么办?
我发布时尝试添加一些参数
Parameter.with("thumb", BinaryAttachment.with(fileName, fetchBytesFromImage(fileName)))
Parameter.with("picture", BinaryAttachment.with(fileName, fetchBytesFromImage(fileName)))
答案 0 :(得分:0)
如果发布多个BinaryAttachment
,则必须将fieldname
添加到BinaryAttachment.with
方法中,将两个BinaryAttachments
都放在List
中并使用它在发布方法中。
它看起来像这样:
fbClient.publish("me/videos", GraphResponse.class,
Arrays.asList(
BinaryAttachment.with("source","1.mp4",inputstream),
BinaryAttachment.with("thumb", "bla.jpg", fetchBytesFromImage("bla.jpg"))),
Parameter.with("description", "Test Thumb"));