Zend_Service_Delicious is simple API for using
del.icio.us XML and
JSON web services. This component gives you read-write access to
posts at del.icio.us if you provide credentials. It also allows read-only access to
public data of all users.
Example 768. Get all posts
<?php
$delicious = new Zend_Service_Delicious('username', 'password');
$posts = $delicious->getAllPosts();
foreach ($posts as $post) {
echo "--\n";
echo "Title: {$post->getTitle()}\n";
echo "Url: {$post->getUrl()}\n";
}




