Closed (fixed)
Project:
Delicious
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Reporter:
Created:
19 May 2008 at 21:18 UTC
Updated:
5 Feb 2009 at 21:50 UTC
Jump to comment: Most recent
The module will not issue any warnings when delicious' API reports a 401 or 403 error no. After receiving the code it will log it to the database and on fetching new tags it will skip this user.
The following code shows all delicious user on the local installation:
SELECT DISTINCT(u.uid), u.name, d.user, d.pass, d.lastupdate, d.lastcode FROM users u INNER JOIN delicious_user d ON u.uid = d.uid;
Use this command to reset the last code and make tag fetching work again:
update delicious_user set lastcode = 0 where uid=YOURID;
Comments
Comment #1
chrislb commentedBtw, anybody knows why this 401 can happen? I keep getting that and it seems for no reason.
Comment #2
Anonymous (not verified) commentedComment #3
Anonymous (not verified) commentedConcur, this is pretty annoying, had I not found this post it would have taken me much longer to figure out. Now I have to check it frequently to make sure it doesn't happen again, not so hot...
Comment #4
Anonymous (not verified) commentedIll look into this over the weekend.
Comment #5
Anonymous (not verified) commentedI have fixed this problem on the Drupal 6 development branch . I'll get this commited tomorrow.
Paul