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?