[PHP] del.icio.us API

I have trouble understanding the del.icio.us API because their documentation[/u] is very lacking. If you try to go to one of their feeds, such as [u]https://api.del.icio.us/v1/posts/get?tag=videogame&count=5, … it asks for your username and password, which is unlike any API I’ve dealt with. How are you supposed to deal with that?

So here’s the basic code that works for all my other API’s[/u] (Flickr, Youtube, Last.FM, etc…), but doesn’t work for del.icio.us. It uses an [u][url=http://blog.f4l.be/tutorials/xml_parse.phps]XML parser.


<?php
   include('XML.php');
   ini_set('user_agent', 'myName123');
   $deliciousQuery = new XML('https://api.del.icio.us/v1/posts/get?tag=videogame&count=5');
   echo 'this text will never be displayed because the URL couldn\'t be opened';
?>