-2

I'm looking to run a competition on Facebook for my company by posting a question and entering the commenters into a random draw.

I was wondering if it was possible using either FQL or graph to list people who have commented on a particular post, along with the date of their comment?

wa-rren-dev
  • 327
  • 1
  • 4
  • 12
  • I have, I can't see anything documented regarding accessing comments threads on posts - only with regard to accessing individuals. I was wondering if this was actually possible with FQL or graph. – wa-rren-dev Mar 10 '14 at 22:31

1 Answers1

1

Using the Graph API Explorer, if you use the following

/me?fields=id,name,posts.limit(10).fields(comments)

You can access all the comments on the 10 recent posts. Tinker around - you'll find what you need.

Sudipta Chatterjee
  • 4,592
  • 1
  • 27
  • 30