How to get real-time status notification with Facebook SDK via listener
- by Mathias Lin
I'm using Twitter4j and the Android Facebook SDK to fetch status messages. With Twitter4J I get real-time notifications whenever a new status has been added to the stream via StatusListener (Twitter4J).
In the Facebook SDK I cannot find a similar way, I can only fetch entire streams over and over again in a fixed time interval using RequestListener (Facebook SDK) as far as I see it.
Is there any way to get notified of new statuses in realtime with the Facebook SDK in a similar way as with Twitter4J?
(Found a similar but unanswered question here: Facebook real-time updated application wall)