hi,i using tweetr lib for update_with_media ,and the url is http://tweetr.swfjunkie.com/proxy/statuses/update_with_media.xml.but i got the response
errors
error code=“34” Sorry, that page does not exist \error
\errors
not the expected one
hash
error Could not authenticate you.error
request/1/statuses/update_with_media.xml?\request
\hash
also i changed the serverhost to https://upload.twitter.com/1,i got a security error. any idea?
here is my method below:
public function updateMedia(status:String,media:ByteArray):void{
request = URL_SEND_UPDATE_MEDIA;
var signedData:String = _oAuth.getSignedRequest(urlRequest.method, “https://upload.twitter.com/1”+request, urlRequest.data as URLVariables);
var ml:MultipartURLLoader = new MultipartURLLoader();
ml.addEventListener(Event.COMPLETE, onReady);
ml.addVariable(“status”,status)
ml.addFile(media,“voice.png”,“media”)
ml.addVariable(“signedData”,signedData)
ml.load( “http://tweetr.swfjunkie.com/proxy”+request)
}