Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

does abraham's twitteroauth library work for update_with_media?

I'm using below code but it returns me stdClass Object ( [request] => /1/statuses/update_with_media.json [error] => Error creating status. )

session_start();
require_once('twitteroauth/twitteroauth.php');
require_once('config.php');


if (empty($_SESSION['access_token']) || empty($_SESSION['access_token']['oauth_token']) || empty($_SESSION['access_token']['oauth_token_secret'])) {
  header('Location: ./clearsessions.php');
}

 $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET,$_SESSION['access_token']['oauth_token'], $_SESSION['access_token']['oauth_token_secret']);

$image = './images/5298.png';
$content = $connection->post('statuses/update_with_media', 
  array(
   'media[]' => '@{$image};type=image/jpeg;filename={$image}', 
   'status' => 'My current location'));

include('html.inc');

Any one any idea how to solve this problem?

EDIT 1: I am using https://upload.twitter.com/1/ as url

share|improve this question
As far as I am aware, you don't need the ;type=image/jpeg;filename={$image} Does it work if you try it without them? – Terence Eden Jun 28 '12 at 13:21
No....it doesn't work without it – ABC Jun 29 '12 at 8:14

2 Answers

As per library author answer elsewhere - No it does not work with update_with_media yet.

TwitterOAuth does not currently support media uploads. I hope to add support in the future. on 10th of May by @abraham at update_with_media using abraham's twitteroauth

share|improve this answer

Yes it does! Change the two files Oauth.php and twitteroauth.php as the described at this link https://github.com/robhaswell/twitteroauth/commit/7f5bfd2450cb1cff71641d7ea55e118f5a42885d and use $connection->upload method like this.

 $params = array('media[]' => '@'.$image_url, 'status' => $messafe);
 $twit = $connection->upload('statuses/update_with_media',$params);
share|improve this answer
Thank you! This answer should be marked as correct! – Nikola 9 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.