Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 0.6.0

Request #8044 Extend addPost by new private parameter
Submitted: 2006-06-27 14:10 UTC
From: wiesemann Assigned: ttsuruoka
Status: Closed Package: Services_Delicious (version 0.3.0)
PHP Version: Irrelevant OS: Irrelevant
Roadmaps: (Not assigned)    
Subscription  


 [2006-06-27 14:10 UTC] wiesemann (Mark Wiesemann)
Description: ------------ del.icio.us allows to mark links as private, see here: http://del.icio.us/help/api/posts "&shared=no (optional) - make the item private" It would be nice if you could extend addPost() by a new parameter for this. Maybe something like "$private = false"?

Comments

 [2006-06-28 12:16 UTC] ttsuruoka at php dot net (Tatsuya Tsuruoka)
This has been fixed in 0.4.0. You can make the item private if "$shared = 'no'". $params = array( 'url' => 'http://www.php.net', 'description' => 'php', 'shared' => 'no', ); $result = $dlc->addPost($params); Thanks!