我有这条facebook帖子:https://www.facebook.com/HenkelDeutschland/posts/1295591900487178 其中添加了 3 张照片。使用Spring Social Facebook API,我可以通过以下方式收到第一张照片:
List<Post> posts = facebook.feedOperations().getFeed(pageId, new PagingParameters(FACEBOOK_FETCH_LIMIT, 0, null, null, null, null, null, null));
Post wantedPost = posts.stream()
.filter(post -> post.getId().contains("1295591900487178"))
.collect(Collectors.toList())
.get(FIRST);
post.getPicture(); // only returns the first picture of those 3
我如何能够收到帖子中显示的所有 3 图片?