Reputation: 135
I am trying to implement real-time(auto updating) wall feed in my app and I don't now how and the Facebook website requires you to do GET and POST commands. Is this possible, and if so how??
Thank So Much In Advance :)
Upvotes: 1
Views: 488
Reputation: 25938
To use Facebook Real-time updates you required to use publicly accessible URL as callback
. So this isn't possible just using standalone application on iOS and you'll need to use some sort of web application/service to handle real-time subscriptions and then pass em to your application.
Upvotes: 3