[Mono-list] del.icio.us library?
Timothy Parez
timothy at saneprojects.be
Fri Apr 27 02:38:12 EDT 2007
Hi,
I checked out the current SVN and tried the following
// project created on 4/27/2007 at 8:25 AM
using System;
using Deveel.Delicious;
namespace DelTest
{
class MainClass
{
public static void Main(string[] args)
{
DeliciousClient client = new
DeliciousClient("myusernamehere","myverysecretpass");
Console.ReadLine();
DeliciousPostCollection posts = client.GetAllPosts();
foreach(DeliciousPost post in posts)
{
Console.WriteLine("{0}\n
\t{1}",post.Description,post.Url.ToString());
}
Console.ReadLine();
Console.WriteLine("done");
}
}
}
I get the following:
Unhandled Exception: Deveel.Delicious.DeliciousClientException: Error
getting response stream (Trust failure): TrustFailure
at Deveel.Delicious.DeliciousClient.GetAllPosts (System.String tag)
[0x00000]
at Deveel.Delicious.DeliciousClient.GetAllPosts () [0x00000]
at DelTest.MainClass.Main (System.String[] args) [0x00016]
in /home/timothy/sources/delicious/DelTest/DelTest/Main.cs:12
but my username/password configuration is correct, unless I need to
specify it in a different way ?
Looking forward to using this library !! :)
Timothy.
More information about the Mono-list
mailing list