Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to poll the Facebook Page Notifications for any changes. I use the following Graph-API-Request with a PageAccessToken for this:

Connection<Notification> notifications = facebookPageClient
    .fetchConnection(getPageName()+"/notifications",
    Notification.class,
    Parameter.with("fields", "id, from, to, created_time, updated_time, title, application, link, object"),
    Parameter.with("include_read", "false"),
    Parameter.with("since", lastImportUnixTime));

This request should return all the new notifications since lastImportUnixTime. Unfortunately Facebook aggregates Notifications some times. For example: User1 and User2 posted on your wall. Then only the updated-time-Field of a notification gets changed (which is logical). This notification would now not be selected by the query for new notifications. Because the since-Parameter is used to find notifications based on their created time.

Is there a way to find all notifications of which the updated-time is newer than a certain timestamp?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.