How to compose request which is retrieve wall posts posted by my application or at least I want to get ALL posts posted by any application or user. Now I can see only posts from myself and friends : me?fields=feed
with permission read_stream
. If it impossible withGraph API
how to do this with FQL
?
Asked
Active
Viewed 160 times
0

Mickey Tin
- 3,408
- 10
- 42
- 71
1 Answers
0
select message from stream where source_id = DESTINATION ID and app_id= YOUR APP ID
If you want to filter by stuff your app is posting you have to find the id that your app is posting on. This is the "soure_id" ie where your post is going. Then you just have to add the parameter of what your app_id is that your app is posting as. If you wanted to filter by user you would just insert their uid as the actor_id instead of app_id.

Tsvi Tannin
- 397
- 1
- 2
- 8