Navigation
More about Kim Bjørn Tiedemann
My home
DotNet del.icio.us API library
03.05.2006 | 0 Kommentarer
Im doing a minor project now in my spare time. I have become very addicted to the del.icio.us service and Im using it a lot at the moment. Im primarily a Java guy but I have worked on a C# project earlier and I wanted to refresh my "skills" within DotNet.
So why not combine the two? I have started a sourceforge project and will commit code soon. Its a DotNet class library coded in C#. The class library is intended to wrap the del.icio.us API and I thought of the following design:
I will keep you posted on this site when Im ready to submit some code. You can also keep an eye on the sourceforge page.
So why not combine the two? I have started a sourceforge project and will commit code soon. Its a DotNet class library coded in C#. The class library is intended to wrap the del.icio.us API and I thought of the following design:
DeliciousFactory factory = DeliciousFactory.GetDeliciousFactory(username, password);The Post class will contain the attributtes that are contained in the posts request from the del.icio.us API.
GetPostRequest request = new GetPostRequest();
request.Tag = "oracle";
request.Dt = new DateTime(2006, 03, 02);
Post[] posts = factory.GetPosts(request);
I will keep you posted on this site when Im ready to submit some code. You can also keep an eye on the sourceforge page.
Kommentarer: