繁体   English   中英

Facebook FQL到Graph API的未发布帖子

[英]Facebook FQL to Graph api unpublished posts

我正在尝试从FQL迁移到Graph API,并且由于未显示而试图从页面中获取未发布的帖子时遇到了一些问题。

这是FQL:

select description,actor_id,app_data,app_id,attachment,comment_info, created_time,feed_targeting,likes,message,permalink,post_id,privacy,share_count,source_id,targeting,type,updated_time,is_published,scheduled_publish_time 
 from stream where source_id="{page-id}" and (is_published=0 or is_published=1) 
 ORDER BY created_time 
DESC LIMIT 250

这就是我现在所拥有的:

{page-id}/feed?fields=id,is_published,scheduled_publish_time,from,description,message,picture,link,name,caption,icon,privacy,type,status_type,object_id,created_time,updated_time,feed_targeting,shares,likes.limit(1),comments.limit(1),attachments&limit=250

FQL的结果集返回了多个帖子,其is_published = false ,而它们都没有通过api调用显示。 显然,我为两者使用了相同的访问令牌。 我尝试添加更多字段,删除某些字段,仅致电可升级职位,但没有走运。 我想念什么吗?

已编辑

如果有人要订阅,Facebook上有一个关于此的错误报告:

https://developers.facebook.com/bugs/277633459027605/

已经确认这是一个错误。

https://developers.facebook.com/bugs/277633459027605/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM