我在使用restfb将评论的附加图像添加到Facebook页面中的状态更新时遇到了麻烦。
我正在评论页面中的状态更新(由我自己做)并添加图片。我想得到那张照片,但返回的Comment对象总是将附件设置为null ...这里是代码:
JsonObject commentAsObject = FacebookUtils.getCommentAsObject(access_token, commentId);
Comment comment = FacebookUtils.getComment(access_token, commentId);
if (comment.getAttachement() != null)
//Do something
commentId有效,我使用该ID构建永久链接并且它有效...并且返回的Comment对象具有所有值,如消息OK,但图片不存在...因此,restfb返回任何值这个?
谢谢!
答案 0 :(得分:1)
您为获取注释而构建的请求需要fields=attachment
参数,因为只有在明确请求时才会返回此字段。