[twitter-dev] Simple example of how to post a tweet from my website using PHP

2010-11-28 Thread Wargame Website
Hi I'm new to web development and I'm having a hard time finding the right example or tutorial for what I want to do. At the moment all I'm looking to do is have my website post an automated tweet to my own Twitter account using PHP. I've got my Consumer_Key and Consumer_Secret keys sorted out.

Re: [twitter-dev] Simple example of how to post a tweet from my website using PHP

2010-11-28 Thread Adam Green
Here is a tutorial that takes you through the entire process of tweeting to a single Twitter account using PHP and OAuth: http://140dev.com/twitter-api-programming-tutorials/hello-twitter-oauth-php/ You can contact me directly if you have any questions. On Sun, Nov 28, 2010 at 7:35 AM, Wargame

Re: [twitter-dev] Simple example of how to post a tweet from my website using PHP

2010-11-28 Thread Abraham Williams
To tweet to your own Twitter account with TwitterOAuth is as simple as three line of code: https://gist.github.com/564882 The wiki also lists a number of excellent guides/howtos specific for TwitterOAuth: https://github.com/abraham/twitteroauth/wiki/links Abraham - Abraham Williams

Re: [twitter-dev] Simple example of how to post a tweet from my website using PHP

2010-11-28 Thread Edward Hotchkiss
use his library, skip all the example shit, then fill in the 3,4 paramters where 1,2 are consumer keys with your access keys which will then post without oauthing to your account. use this tweet example and ur golden, ignore the clearsessios, callback etc. On Nov 28, 2010, at 7:35 AM, Wargame