Most of the time this is a bad password. However, you need to give us
a lot more detail, like exactly the request being sent, and the
response given (including all headers and body). A debugging proxy
like Charles is extremely useful for this kind of thing.

--
Ed Finkler
http://funkatron.com
AIM: funka7ron
ICQ: 3922133
Skype: funka7ron


On Fri, Dec 5, 2008 at 12:28 PM, jspap <[EMAIL PROTECTED]> wrote:
>
> Tring to make a status update with PHP 4 with no libcurl but I keep
> getting 403 access denied :(
>
> $url = "http://MYACCOUNT:[EMAIL PROTECTED]:80/statuses/
> update.xml";
>
> $params = array('http' => array(
>   'method' => 'POST',
>   'status' => $msg
> ));
>
> if ($optional_headers !== null) {
>        $params['http']['header'] = $optional_headers;
> }
> $ctx = stream_context_create($params);
> $fp = fopen($url, 'rb', false, $ctx);
>
> $response = file_get_contents($fp);
> }
>

Reply via email to