Version 1 of careck

Updated 2006-04-04 05:21:12

is the screen name of Carsten Eckelmann.

Delicious bookmarks reader - starting out... nothing to see yet...

 package require base64
 package require http

 proc delicious_get_all {username password} {
   set auth "Basic [base64::encode $username:$password]"
   set headerl [list Authorization $auth]
   set tok [http::geturl http://del.icio.us/api/posts/all -headers $headerl]
   set res [http::data $tok]
   http::cleanup $tok
   set res
 }