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 would really appreciate any help on this.

I am using the TwitterOAuth by Abraham Williams as recommended in the twitter API list.

My main page has this code in it:

<?php
// Twitter Class
require_once('twitteroauth/twitteroauth.php');

// Twitter Connection Info
$twitter_access_token = 'xxx';
$twitter_access_token_secret = 'xxx';
$twitter_consumer_key = 'xxx';
$twitter_consumer_secret = 'xxx';

// Connect to Twitter
$connection = new TwitterOAuth($twitter_consumer_key, $twitter_consumer_secret,      $twitter_access_token, $twitter_access_token_secret);

// Post Update
$content = $connection->post('statuses/update', array('status' => 'Test Tweet'));

?>

I have made sure the application has read and write access too.

however, for some reason it is not working.

If it helps I used this at the end of the code:

var_export($connection->http_info);

which gave this output:

array ( 'url' => 'https://api.twitter.com/1/statuses/update.json', 'content_type' => 'application/json; charset=utf-8', 'http_code' => 401, 'header_size' => 761, 'request_size' => 480, 'filetime' => -1, 'ssl_verify_result' => 0, 'redirect_count' => 0, 'total_time' => 0.292209, 'namelookup_time' => 0.008611, 'connect_time' => 0.071678, 'pretransfer_time' => 0.217113, 'size_upload' => 294, 'size_download' => 75, 'speed_download' => 256, 'speed_upload' => 1006, 'download_content_length' => 75, 'upload_content_length' => 294, 'starttransfer_time' => 0.29201, 'redirect_time' => 0, )

I have no idea what is going on :(

sorry the problem is, that it just doesnt seem to post

share|improve this question
[solved] The problem seemed to be that the access tokens were not created straight away on the twitter side. It all works now. – MarkP May 15 '12 at 12:40
1  
You should delete/answer the question. – abraham May 22 '12 at 2:15
great help :) the documentation for twitteroauth was awful. Your question helped me get it working. – Jamie Hutber Jan 26 at 18:46

closed as too localized by casperOne Jul 10 '12 at 18:35

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.