我正在开发一个MVC3网络应用程序,通过在数据库中创建数据,该特定数据的内容也将发布到Facebook墙上。
例如,在数据库中我创建一个这样的列:
Email: abc@abc.com
Messege: Hello World!
我希望这些数据在Facebook墙上发布,例如:
Hello World! from abc@abc.com
任何建议的指南或教程?谢谢!
答案 0 :(得分:0)
我认为c#Facebook sdk可以帮助你...
Dictionary<string, string> postArgs = new Dictionary<string, string>();
postArgs["message"] = "Hello, world!";
api.Post("/userid/feed", postArgs);
取自这里的文档...
https://github.com/facebook/csharp-sdk
其他链接......
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/