2015-02-06 10 views
0

FQL에서 Graph API로 이전하려고하는데 표시되지 않는 페이지에서 게시되지 않은 게시물을 가져 오는 동안 몇 가지 문제가 발생합니다. Facebook FQL to 게시되지 않은 게시 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 

그리고 이것은 내가 지금 무엇을 가지고 : FQL에서 설정

{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 

결과는 is_published = false에 대한 몇 가지 게시물을 반환, 그들 중 누구도으로 표시되지 동안 API 호출. 분명히, 나는 두 가지 모두에 대해 동일한 액세스 토큰을 사용하고 있습니다. 좀 더 많은 필드를 추가하고, 일부 필드를 제거하고, 승격 가능한 게시물에 대해서만 호출을 시도했지만 운이 없습니다. 내가 놓친 게 있니? 이 버그가 있음을 확인했습니다

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

답변