Muchas veces utilizo sistema de marcadores sociales delicious.com para encontrar herramientas, ver las tendencias de los usuarios y también buscar material para publicar en este sitio. Además de todo esto es muy bueno para compartir enlaces interesantes, es por esto que muchas veces puede resultar muy útil mostrar los últimos marcadores agregados, para esto sólo es necesario un simple script PHP.
briancray.com publicó un script PHP que utiliza la API de Delicious.com para mostrar los últimos marcadores. Sólo es necesario subir el script al servidor y configurarlo con los datos de la cuenta que se usará para mostrar los marcadores.
function get_delicious() { $cache = dirname(__FILE__) . '/caches/delicious'; if(filemtime($cache) < (time() - 300)) { @mkdir(dirname(__FILE__) . '/caches', 0777); $url = 'https://api.del.icio.us/v1/posts/recent?count=10'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); curl_setopt($ch, CURLOPT_TIMEOUT, 5); curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // add delicious.com username and password below curl_setopt($ch, CURLOPT_USERPWD, 'username:password'); //Aquí van los datos de la cuenta $data = curl_exec($ch); curl_close($ch); $cachefile = fopen($cache, 'wb'); fwrite($cachefile, $data); fclose($cachefile); else { $data = file_get_contents($cache); } $xml = simplexml_load_string($data); $html = '<ul>'; foreach($xml as $item) { $html .= '<li><a href="' . $item['href'] . '">' . $item['description'] . '</a> ' . $item['extended'] . '</li>'; } $html .= '<li><a href="http://delicious.com/briancray">More of Brian Cray\'s delicious bookmarks…</a></li>'; $html .= '</ul>'; echo $html; } // llamar a la función: get_delicious();
Display your recent delicious bookmarks with PHP
Sitio: briancray.com/2009/08/24/delicious-bookmarks-api-php