Project DescriptionFanfouNET is a .NET wrapper for the API of fanfou.com which is a micro-blogging service provider.
Project GoalYou 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 Features1.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.
SamplesYou 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?
Linksfanfou Home:
http://fanfou.comMy personal page on fanfou:
http://fanfou.com/shinyRegister an account on fanfou.com and be a friend with me directly:
http://fanfou.com/register/aRxlqeveN_JMComments are welcome