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've been looking around at various sites to learn how to create a Facebook Application that allows a user to post something from an external website to Facebook Timeline. However, most of the stuff I find is quite out of date such as connecting to the API etc...

Does anyone know of any good tutorials etc. on how to do this in PHP that are up to date?

share|improve this question
1  
Start with official facebook php sdk – zerkms Nov 5 '12 at 20:10
There is php example code on the facebook developer site. – Bot Nov 5 '12 at 20:10

closed as not constructive by CBroe, Ryan, Igy, tereško, DocMax Nov 5 '12 at 21:22

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Well, of course, you can either use the tools written by Facebook, or you can do the whole thing on your own. I suggest you to do the first... You can find some documentation here: http://developers.facebook.com/docs/reference/php/

If you haven't found anything useful there, and you can't find anything up to date (hardly think so, but who knows?), you might want to read the HTTP requests your browser does when logging in and posting on the timeline, as well as the responses given by Facebook servers. Then, once you read the whole thing, you can write your own HTTP request (based on the previous ones) and send them to the Facebook servers (using fsockopen()). I'm not sure whether logging in on Facebook always requires the usage of HTTPS... You can avoid it (it's easier) logging in here http://m.facebook.com/login.php?http Good luck :)

share|improve this answer

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