im trying to update status with image using
https://upload.twitter.com/1/statuses/update_with_media.json
$twitterOAuth->request(‘POST’, https://upload.twitter.com/1.1/statuses/update_with_media.json,
array(‘media[]’=>‘image url’, ‘status’=>‘my status’ ), true, true);
and it gives me 403
but with the same authentications i can post status only using
https://api.twitter.com/1/statuses/update.json
$twitterOAuth->request(‘POST’, https://api.twitter.com/1/statuses/update.json,
array(‘status’=>‘my status’ ), true, true);
status only update without any problem.