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.

I am trying to integrate Image Upload with one of my plugin. I am using tmhOAuth PHP library to work with Twitter API but when I make call to update_with_media.json , it return 403 error.

I have not crossed any rate limits and I am trying this for a week now. I am not getting what is causing this error.

Here is the code I am trying to test update_with_media call,

<?php
      require 'tmhOAuth.php';
      require 'tmhUtilities.php';
      $tmhOAuth = new tmhOAuth(array(
      'consumer_key'    => '',
      'consumer_secret' => '',
      'user_token'      => '',
      'user_secret'     => '',
    ));

    // we're using a hardcoded image path here. You can easily replace this with an         uploaded image-see images.php example)
    // 'image = "@{$_FILES['image']['tmp_name']};type={$_FILES['image']['type']};filename={$_FILES['image']['name']}",

    $image = "banner.png";


    $code = $tmhOAuth->request('POST',     'https://upload.twitter.com/1/statuses/update_with_media.json',
  array(
    'media[]'  => "{$image}",
    'status'   => "Testing update_with_media" // Don't give up..
  ),
  true, // use auth
  true  // multipart
);

    if ($code == 200) {
      tmhUtilities::pr(json_decode($tmhOAuth->response['response']));
    } else {
      tmhUtilities::pr($tmhOAuth->response['response']);
    }
?>

vardump of the response I am getting is here:

array 'raw' => string 'HTTP/1.1 403 Forbidden

Date: Sun, 06 Jan 2013 09:50:25 GMT

Server: hi

Status: 403 Forbidden

X-Controller-Class: Api::StatusController

X-Frame-Options: SAMEORIGIN

Expires: Tue, 31 Mar 1981 05:00:00 GMT

Content-Type: application/json; charset=utf-8

X-Transaction: 899bf8f6cbf711f4

Pragma: no-cache

X-MediaRateLimit-Reset: 1357552225

X-MediaRateLimit-Class: photos

X-Transaction-Mask: a6183ffa5f8ca943ff1b53b5644ef1146e8da1d2

X-Runtime: 0.20191

X-MediaRateLimit-Remaining: 100

Cache-Control: no-cache'... (length=1808) 'headers' => array 'HTTP/1.1 403 Forbidden' => string '' (length=0) 'Date' => string 'Sun, 06 Jan 2013 09:50:25 GMT' (length=29) 'Server' => string 'hi' (length=2) 'Status' => string '403 Forbidden' (length=13) 'X-Controller-Class' => string 'Api::StatusController' (length=21) 'X-Frame-Options' => string 'SAMEORIGIN' (length=10) 'Expires' => string 'Tue, 31 Mar 1981 05:00:00 GMT' (length=29) 'Content-Type' => string 'application/json; charset=utf-8' (length=31) 'X-Transaction' => string '899bf8f6cbf711f4' (length=16) 'Pragma' => string 'no-cache' (length=8) 'X-MediaRateLimit-Reset' => string '1357552225' (length=10) 'X-MediaRateLimit-Class' => string 'photos' (length=6) 'X-Transaction-Mask' => string 'a6183ffa5f8ca943ff1b53b5644ef1146e8da1d2' (length=40) 'X-Runtime' => string '0.20191' (length=7) 'X-MediaRateLimit-Remaining' => string '100' (length=3) 'Cache-Control' => string 'no-cache, no-store, must-revalidate, pre-check=0, post-check=0' (length=62) 'X-MID' => string '5905ec4966b67a5a8b3554f5c607dd1381741726' (length=40) 'X-MediaRateLimit-Limit' => string '100' (length=3) 'Last-Modified' => string 'Sun, 06 Jan 2013 09:50:25 GMT' (length=29) 'X-Access-Level' => string 'read-write-directmessages' (length=25) 'X-Action-Name' => string 'update_with_media' (length=17) 'Set-Cookie' => string '_twitter_sess=BAh7CToMY3NyZl9pZCIlZGVhODk2NmQwMjNlMDA5ZDlhMjU2OTMwN2M2MDk5%250AZTIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh%250Ac2h7AAY6CkB1c2VkewA6D2NyZWF0ZWRfYXRsKwjurkQPPAE6B2lkIiUwMTRk%250AZDNjM2MzZTk4ZTY3Mzc2MDRhNzA4Yzk0NDA3NA%253D%253D--63d3091281afdf65fc7ba2763a47c516afd58d1f; domain=.twitter.com; path=/; HttpOnly' (length=338) 'Vary' => string 'Accept-Encoding' (length=15) 'Content-Encoding' => string 'gzip' (length=4) 'Content-Length' => string '96' (length=2) '' => string '' (length=0) 'code' => int 403 'response' => string '{"request":"/1/statuses/update_with_media.json","error":"Error creating status."}' (length=84) 'info' => array 'url' => string 'https://upload.twitter.com/1/statuses/update_with_media.json' (length=60) 'content_type' => string 'application/json; charset=utf-8' (length=31) 'http_code' => int 403 'header_size' => int 1724 'request_size' => int 617 'filetime' => int -1 'ssl_verify_result' => int 20 'redirect_count' => int 0 'total_time' => float 1.809 'namelookup_time' => float 0 'connect_time' => float 0.265 'pretransfer_time' => float 0.936 'size_upload' => float 272 'size_download' => float 96 'speed_download' => float 53 'speed_upload' => float 150 'download_content_length' => float 96 'upload_content_length' => float 272 'starttransfer_time' => float 0.936 'redirect_time' => float 0 'certinfo' => array empty 'redirect_url' => string '' (length=0) 'request_header' => string 'POST /1/statuses/update_with_media.json HTTP/1.1

User-Agent: tmhOAuth 0.7.2-SSL - //github.com/themattharris/tmhOAuth

Host: upload.twitter.com

Accept: /

Accept-Encoding: deflate, gzip

Authorization: OAuth oauth_consumer_key="XXX", oauth_nonce="XXX", oauth_signature="XXX%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1357465828", oauth_token="XXX-XXX", oauth_version="1.0"

Cont'... (length=617) 'error' => string '' (length=0) 'errno' => int 0 {"request":"/1/statuses/update_with_media.json","error":"Error creating status."}

It is from the example found on dev.twitter.com . What am I doing wrong?

share|improve this question

1 Answer

You are not authorized to do anything on the twitter api. First create an application to get the tokens and secrets. Then enter them on these four lines:

$tmhOAuth = new tmhOAuth(array(
  'consumer_key'    => '',
  'consumer_secret' => '',
  'user_token'      => '',
  'user_secret'     => '',
));
share|improve this answer
c'mon mate, I am not going to post my keys here, that is why I stripped that. If this was the error, I would be getting error:"Error creating status." , it would have been that cannot authorized using OAuth or something. – ksg91 Jan 6 at 16:51

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.