I have been poking around the social media space the last few days and have decided to give Del.icio.us a try again, but was curios what their API was like. As soon as I saw that it was all http posts my thoughts went to “NEVERMIND”. Then I thought “hey I wonder if someone has already made a .NET library for Del.icio.us.” Well someone has. I spent probably 5 minutes testing it too, and adding a link is as simple as the following code.
NDelicious.Delicious del = new NDelicious.Delicious("username", "password");
del.AddPost("URL", "Description");
Of course so you don’t have to type out NDelicious you can use a using or import statement for the NDelicious namespace.
That is easy code and it works. Is honestly the first time I have used a 3rd party library and it works like it is supposed to.
.NET Del.icio.us library