I tried to create a feed application that will show feeds from facebook and other social platforms, but the problem I encountered is a real-time update on my server when a user posts something to his wall on facebook. Is there a way to get real-time data without any requests to facebook servers to find out if the user posted anything, i.e. facebook servers will notify me that the user has added a message so that I can receive this entry and save its server and notify others that the user has added the message to facebook.
PS- I read about Webhooks from the Api chart, but was not sure if they would work or not.
source
share