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

chrislb’s picture

Btw, anybody knows why this 401 can happen? I keep getting that and it seems for no reason.

Anonymous’s picture

Version: 5.x-1.4 » 5.x-2.x-dev
Anonymous’s picture

Concur, 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...

Anonymous’s picture

Assigned: Unassigned »

Ill look into this over the weekend.

Anonymous’s picture

Version: 5.x-2.x-dev » 6.x-1.x-dev
Status: Active » Fixed

I have fixed this problem on the Drupal 6 development branch . I'll get this commited tomorrow.

Paul

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.