views:

15

answers:

0

I have an app which I have created which contains a list of facebook page ids, and scans each one for new wall posts using FQL. This works fine, but now the client would also like to receive new comments for any existing wall post.

I could go the same route with FQL, but I feel like the large amount of nested queries will bog down the server, and possibly not make Facebook very happy.

Do I have an alternate solution to FQL for doing this? Would I need to somehow authorize every page owner's account in the application (OAuth?), and would I then be able to receive notifications pertinent to only that specific page?

Thanks!

related questions