I keep getting this response to my attempts to post a status update from an app I'm writing.
<?xml version="1.0" encoding="UTF-8"?> <hash> <request>/statuses/update.xml</request> <error>Client must provide a 'status' parameter with a value.</ error> </hash> Everything seems totally in order, using: http://twitter.com/statuses/update.xml I set the content length in the header, then open the HttpConnections outputstream, write the request bytes, flush it, then check the response code to send the request in that order. I'm under the impression that the content body of the request should be simply: status=*update_content_string_here* I've tried testing various different headers, adding the optional "in_reply_to_status_id" as well, but it just gives me that same 403 error. Any help or verification that the http://twitter.com/statuses/update.xml works for others and that I'm using the correct parameter formatting would be greatly appreciated. Thanks
