Quickfix Del.icio.us Integrator Plugin

Del.icio.us hat scheinbar schon wieder seine API umgestellt und so kann man leider nicht mehr die letzten Links per http://username:password@del.icio.us/api/posts/recent, sondern nun unter https://username:password@api.del.icio.us/v1/posts/recent abrufen. Damit das im Titel genannte Plugin (zu finden hier) also wieder funktioniert muss in Zeile 97/98 der Datei delicious.php folgendes:
// Get XML from del.icio.us
$contents = @file_get_contents('http://' . $wpdi_username . ':' . $wpdi_password . '@del.icio.us/api/posts/all');

durch
// Get XML from del.icio.us
$contents = @file_get_contents('https://' . $wpdi_username . ':' . $wpdi_password . '@api.del.icio.us/v1/posts/recent');

ersetzt werden.


Beitrag veröffentlicht

in

,

von