« Return to Thread: No links being fetched by Net::Delicious

No links being fetched by Net::Delicious

by Phil Gyford-2 :: Rate this Message:

Reply to Author | View in Thread

Hi,

I've been using a perl script with Net::Delicious to fetch my daily links every day for some
time and it's worked fine. Except now it fetches nothing. It worked when I del.icio.us'd
stuff was the March 12th, but the next time, on the 21st, it didn't.

Here's a test script:

--

#!/usr/bin/perl

use strict;
use Net::Delicious;
use Data::Dumper;

my $del = Net::Delicious->new({
    user   => 'philgyford',
    pswd   => 'mypassword'
});

my @links = $del->posts({
    tag => 'top',
    dt => '2008-03-21'
});

print Dumper (@links);

--

But that last line outputs nothing... Has something changed that I'm not aware of, or have
I made some dumb mistake?

Thanks,
Phil

 « Return to Thread: No links being fetched by Net::Delicious