views:

138

answers:

4
+3  Q: 

Wall on FaceBook

i would like to post a message on facebook wall (standard friend/group's wall) not the Apps. using delphi, i could log-in but i dont know how to post a message on it. any suggestion?

+2  A: 

Two possible links that may provide some guidance? They are not in delphi, but I assume the api would be similar to javascript/php ?

http://daipratt.co.uk/using-fb-api-to-make-a-full-post-to-a-users-wall/

http://blog.theunical.com/facebook-integration/5-steps-to-publish-on-a-facebook-wall-using-php/

Mark
+3  A: 

Delphi library to support FaceBook applications

http://code.google.com/p/delphibook/

best regards,

Radu Barbu
+3  A: 

I have never used Delphi so im not sure about the language structure

but facebook API is basically HTTP Requests, you should be able to build a class that upon instanation you would authorize your app and then have a set of methods that publish data via HTTPRequest and validate the response

Heres something you may wish to look at:

Facebook emailer in delphi via CakeMail: http://www.facebook.com/note.php?note_id=17522112271

And how to post via HTTP: http://developers.facebook.com/docs/reference/api/post

RobertPitt