[twitter-dev] Twitter API - Sample PHP Script

2010-09-28 Thread Velvet
Hello, This is the first time I work on a API installation, Therefore be patient with me. I'm looking into installing a script on my website were it'll read an RSS file and periodically will send 3 or 4 records to twitter as a tweet. I already have the oauth keys. Is there a simple PHP code

Re: [twitter-dev] Twitter API - Sample PHP Script

2010-09-28 Thread Tom van der Woerdt
You could start with @Abraham's TwitterOAuth library: http://github.com/abraham/twitteroauth You don't need the whole code, just the library itself, and these 2 lines : $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET);

Re: [twitter-dev] Twitter API - Sample PHP Script

2010-09-28 Thread Scott Wilcox
Hi, Take a look at http://github.com/dordotky/oauth-examples I've got a few sample scripts there. Scott. On 28 Sep 2010, at 13:42, Velvet wrote: Hello, This is the first time I work on a API installation, Therefore be patient with me. I'm looking into installing a script on my website