tags:

views:

659

answers:

3
+2  Q: 

Facebook Wall Post

Hello All

I have created one Web Application in ASP.Net. In That am able to connect with FaceBook and getting data from logged in user's profile. now i would like to post a message on wall. i have found the STREAM.PUBLISH method but i dont know how to use it. it asks me for permission. so is there any other way to post message on wall, any exmple using ASP.Net

Thanks

+3  A: 

To use stream publish the user needs to Give you the extended permission "publish_stream" http://wiki.developers.facebook.com/index.php/Extended_permissions

You can also use FeedForms to ask the user for posting the message via a dialog http://wiki.developers.facebook.com/index.php/Feed_forms

you can also post simple one-line feedmessages without permissions by the users. but those are of very low priority and will never be seen in the home page of friends.

Andreas Klinger
+1  A: 

shall you share code?

tushar
+1  A: 

Here you can find a tutorial about it:

http://www.barattalo.it/2010/01/17/posting-to-facebook-from-website-with-facebook-connect/

Since it's written in php you have to translate something, but the important job is made with the facebook javascript api.

Pons

related questions