$code = $tmhOAuth->request( 'POST','https://api.twitter.com/1.1/statuses/update_with_media.json',
array(
'media[]' => "@{$image};type=image/jpeg;filename={$image}",
'status' => $status,
),
true, // use auth
true // multipart
);
here is my request code in which if some time status is large then i get 403 error and if status is small then i got 200 success code
how can i solve this?