|
Project Information
Members
Links
|
Project Description FanfouNET is a .NET wrapper for the API of fanfou.com which is a micro-blogging service provider. Project Goal You can use this library access api.fanfou.com, so everything fanfou's api can do, you can do more easier. Now the new version has released. v1.2 Features 1.Pluggable you can implement your own Response parser to parse the response. 2.Standalone the library is lightweight with no other dependencies but under .NET Framework 3.5 because it contain a Linq to XML parser by default. Samples You can use FanfouNET simply just like: FanfouRequest fanfou = new FanfouRequest();
List<Status> publictimeline = fanfou.GetPublicTimeline();
foreach(var status in publictimeline){
Console.WriteLine(status.Text);
}or post a status simply: FanfouRequest fanfou = new FanfouRequest();
fanfou.Credential = new FanfouCredential("youremail", "yourpassword");
Status posted = fanfou.PostStatus("This is your status will be posted");
Console.WriteLine(posted.Id);That's really simple yet? Comments are welcome |