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 have a callback.php file that gets called by facebook and the update is stored in $updates. I want to display the contents of $updates on the webpage every time $updates changes. How can i do this? I have heard about Comet and Ajax.. what is the best way to go about doing this?

share|improve this question

2 Answers

up vote 1 down vote accepted

Easy: JS setinterval, poll server for updates every x seconds. Harder: HTML5 Websockets (not that hard when you get into it though).

share|improve this answer
hi christian, is there a way the server can push the updates instead of me polling it? – Praveen Oct 6 '11 at 5:54
Yes, HTML5 Websockets :) – Christian Varga Oct 6 '11 at 6:03

It seems you need the Real time update Graph API from Facebook.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.