It's Shiny

It's Shiny

Home » Blog » Programming » FanfouNET 1.2 Release Notes

FanfouNET 1.2 Release Notes

Posted on 2008-5-22 2:09:58 and got 39 reads.

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?

 

Links

fanfou Home: http://fanfou.com

My personal page on fanfou: http://fanfou.com/shiny

Register an account on fanfou.com and be a friend with me directly: http://fanfou.com/register/aRxlqeveN_JM

Project on codeplex page: http://www.codeplex.com/FanfouNET

or on google code: http://code.google.com/p/fanfounet/

Comments are welcome


Comments

I'm waiting for your comment!

Leave your comment: