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 am developing a MVC3 web apps where by creating a data in database, the content of that particular data will be posted to facebook wall as well.

For example, in database i creating a column like this:

Email: abc@abc.com

Messege: Hello World!

and I want this data to be publish at facebook wall, like:

Hello World! from abc@abc.com

Any recommended guidelines or tutorial? Thanks!

share|improve this question

1 Answer

up vote 0 down vote accepted

I think the c# Facebook sdk could help you ...

    Dictionary<string, string> postArgs = new Dictionary<string, string>();
postArgs["message"] = "Hello, world!";
api.Post("/userid/feed", postArgs);

taken from the docs here...

https://github.com/facebook/csharp-sdk

other links...

http://facebooksdk.codeplex.com/wikipage?title=ASP.NET%20MVC%20Sample&referringTitle=Documentation

http://facebooktoolkit.codeplex.com/

http://multitiered.wordpress.com/2010/08/05/getting-started-with-the-facebook-c-sharp-sdk/

share|improve this answer
Thanks! So I will need to create an apps to grab my token first? – MiaoWin Feb 27 '12 at 11:26
you need to register your app in case you want to interact with facebook api that's true... but for that see the second link... – silverfighter Feb 27 '12 at 11:35

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.