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.

Basically, when a user (any of them) posts on my site, I want it to post to the website's twitter account, first I thought RSS, but then I realised there aren't any that update constantly, so onto the API, the problem I have is that using OAuth the posts will be published to the users account, not the sites. I'm using this tut: http://www.1stwebdesigner.com/tutorials/twitter-app-oauth-php/

Any help would be appreciated (or even better, easier ideas!) :)

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to request your oAuthToken and oAuthSecret from Twitter to access your account directly. They should also give you a consumerKey and consumerSecret. The rest is simple:

//Create new client.
$tweet = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);

//Send Tweet
$tweet->post('statuses/update', array('status' => $message));
share|improve this answer

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.