Reputation: 573
I would like to create a C# application (.net 2.0 due to the API) to post new bookmarks to Delicious. I found a library: http://netlicious.sourceforge.net/ but I can't find any sample files. I added the DLL to my references and enter the following code:
Delicious.Connection.Username = "e-mail";
Delicious.Connection.Password = "password";
Delicious.Post.Add (url, description, extended, tags, date, replace, shared);
But i get an exception at the POST method: "The server is not responding. ServiceUnavailable" What's the problem? I can use Delicious from firefox.
Upvotes: 2
Views: 573