簡體   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