|
View:
New views
3 Messages
—
Rating Filter:
Alert me
|
|
|
No links being fetched by Net::DeliciousHi,
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 |
|
|
Re: No links being fetched by Net::DeliciousIt seems to be working fine from here.
My main thought would be that you may have been blocked - check to see what the return code is. If it's working now, odds are that you were temporarily blocked. Regards, Toby Elliott del.icio.us On Mar 22, 2008, at 12:44 PM, Phil Gyford wrote: > 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 > > > [Non-text portions of this message have been removed] |
|
|
Re: No links being fetched by Net::DeliciousHow embarrassing... I must have changed my password at some point over the past
couple of weeks. I don't remember doing so, but I had the wrong password in my script. Senility is kicking in early I tell you. Apologies for wasting your time, and many thanks for the nudge. --- In ydn-delicious@..., Toby Elliott <telliott@...> wrote: > > It seems to be working fine from here. > > My main thought would be that you may have been blocked - check to > see what the return code is. If it's working now, odds are that you > were temporarily blocked. > > Regards, > Toby Elliott > del.icio.us > > > On Mar 22, 2008, at 12:44 PM, Phil Gyford wrote: > > > 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 > > > > > > > > > > [Non-text portions of this message have been removed] > |
| Free Forum Powered by Nabble | Forum Help |