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 need a PHP & MYSQL script which has features to auto script using PHP and MYSQL also OAuth Authentication. Please could you tell me some code in PHP for how could I could initiate the process.

Note: for PHP & MYSQL a Cron Job is optional I think, for an automated task I think a cron job is necessary.

Example: i have done hundreds of company project management after completion's of the project if i feel good then i have to tweet and paste that project on facebook as well i have issue that its very complicated for me to tweet every project manually i just want that i have to add all my tweets into database then after that at the given time interval the tweet has been update on my account automatically at the mentioned time which is on database.

When i test this its always goto to the else condition not done:(

require './tmhOAuth.php';
require './tmhUtilities.php';
$connection = new tmhOAuth(array(
  'consumer_key'    => 'xxxx',
  'consumer_secret' => 'yyyy',
  'user_token'      => 'zzzz',
  'user_secret'     => 'ttttt',
));

$code = $connection->request('POST', $connection->url('1/statuses/update'), array(
  'status' => 'just want to know what was going on ... hello wolrd'
));

if ($code == 200) {
  tmhUtilities::pr(json_decode($tmhOAuth->response['response']));
  echo 'done';
} else {
  tmhUtilities::pr($tmhOAuth->response['response']);
  echo 'not done';
}
share|improve this question
I have no clue what you actually want to do other than set up a cron task. – jprofitt Jun 18 '12 at 16:44
dev.twitter.com/docs – Nurgle Jun 18 '12 at 16:44
2  
I don't quite understand your question... – Jason Jun 18 '12 at 16:46
Read the FAQ before posting. Also what have you tried so far? – Fabian Jun 18 '12 at 16:48
why all guys negative postive – Mildred L.Aparici Jun 18 '12 at 18:07
show 1 more comment

closed as not a real question by jprofitt, user414076, m.edmondson, Mikko Maunu, Graviton Jun 19 '12 at 3:18

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

For my website I used tmhOAuth and this code:

function post_tweet($tweet_text) {
  require_once('../lib/tmhoauth/tmhOAuth.php');

  $connection = new tmhOAuth(array(
    'consumer_key' => 'xxxxx',
    'consumer_secret' => 'yyyyy',
    'user_token' => 'zzzzzz',
    'user_secret' => 'ttttt',
  )); 

  $connection->request('POST', 
    $connection->url('1/statuses/update'), 
    array('status' => $tweet_text));

  return $connection->response['code'];
}

Then all you have to do is:

if (post_tweet("your tweet's text") == 200) {
    //tweeted successfully
} else {
   //error
}

By the way, be careful for the encoding (you would use UTF8 maybe). You can also integrate your twitter function with short url service.

share|improve this answer
Twitter automatically uses a short url (t.co I believe). – Jason Jun 18 '12 at 16:46
this code is not working any more i have entered all the parameters correctly but its not working...:( any special idea ..?? – Mildred L.Aparici Jun 18 '12 at 18:30
question edited .. – Mildred L.Aparici Jun 18 '12 at 18:36

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