I take stream_publish permission from user, and use it to publish some content to facebook wall. In the insights page, I see number N wall posts done on specific date. Is there any graph api call or FQL through which I can retreive all the wallposts that were done using my app's application id and access_tokens on that specific date ? or may be last 100 wallposts that were done through my app.

I do have read_stream permisssion for each user's access_token .

link|improve this question

feedback

1 Answer

Try this graph call:

fql?q=SELECT message, attachment, attribution, app_id from stream where source_id=me() and app_id={appId} LIMIT 100

link|improve this answer
Did this answer, solve, or help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Apr 17 at 19:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.