facebook - How can I get all my posts to other people, not to my timeline? -


how can get, using facebook graph api, posts other people, not timeline? i'm trying use me/posts , posts including timeline, , couldn't separate it

using facebook fql api:

select post_id, created_time, description, description_tags, app_id, message, type, created_time stream source_id=me() , comment_info.can_comment!='' , actor_id=me() , permalink="" , created_time<=now() limit 150

the problem query doesn't return "upload photo on friends wall"'s post, because of unresolved bug @ https://developers.facebook.com/bugs/148353975327544. however, fql query should works perfectly. kindly let me know if you're figure out wrong query.

also, please make sure user access token have granted "read_stream" permission.

  1. comment_info.can_comment!='' used exclude "comment on friend's status" story feed.
  2. permalink="" used exclude "lim , 林果皞 friends." or "people changed profile picture.", "林果皞 created event."...etc. can test happen if remove this.

update comment below:

i think can extract id description_tags no start "0", example screenshot, id "100003013144869":

enter image description here

also, extract created_time, example "1368624514"

then, query with:

select post_id stream source_id='100003013144869' , actor_id=me() , created_time=1368624514

i'm know it's not absolutely accurate(if 2 feed have same created_time on seconds), can make job done.


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -