With this script you can access your private marks in news aggregators which support Basic HTTP authentication (tested with FeedDemon). {{{ setMethod(HTTP_REQUEST_METHOD_GET); $req->addHeader('Accept', 'application/atom+xml'); $req->addHeader('X-WSSE', 'UsernameToken Username="' . $Username . '", PasswordDigest="' . $PasswordDigest . '", Nonce="' . $Nonce . '", Created="' . $CreationTimestamp . '"'); $response = $req->sendRequest(); if (PEAR::isError($response)) { echo $response->getMessage(); } else { echo $req->getResponseBody(); } } ?> }}}