[twitter-dev] Re: using Twitter API with PHP

2009-08-25 Thread John Jawed
All the above mentioned references are great starting points. Here is another to look at: http://toys.lerdorf.com/archives/50-Using-pecloauth-to-post-to-Twitter.html On Mon, Aug 24, 2009 at 7:44 AM, abrahamvegh m...@abrahamvegh.com wrote: You can just use the JSON responses with a callback

[twitter-dev] Re: using Twitter API with PHP

2009-08-25 Thread chepe263
Listen, the first place to start is the twitter api documentation. At the beginning i didn't understant the api but when i read a lot about cURL and twitter api on the net everything got sense. What i really recomend is understand the SimpleXML in php. Helps a lot with xml format api. I hope

[twitter-dev] Re: using Twitter API with PHP

2009-08-25 Thread mike
here ya go. PHP libraries ready to roll. http://apiwiki.twitter.com/Libraries#PHP I have been using this one PHP Twitter by Aaron Brazell, original code from David Billingham. successfully. No Oauth support yet. You are going to have to play around with the libraries, however, to make things

[twitter-dev] Re: using Twitter API with PHP

2009-08-24 Thread Termanater13
I understand PHP well enough to code some website (like the site im working on). I can get by but I cant create some of the site with PHP out there just yet. I sterted woking with the http requests and so far so good, but I just cant fugure how to get it to authenticate though a http request.

[twitter-dev] Re: using Twitter API with PHP

2009-08-24 Thread abrahamvegh
You can just use the JSON responses with a callback and do it using JavaScript. If you really want to do it server-side, I suggest this very simple library: http://github.com/tcdent/php-twitter/ You can also check out @jmathai's full-featured OAuth-compatible library:

[twitter-dev] Re: using Twitter API with PHP

2009-08-23 Thread Scott Haneda
If you don't want a public community API, and want to write it in your own, then you are sort stuck. The docs show you sample curl commands or you can http request in a browser to test simulate. You have sample curl examples, if you are objectionable to libraries, then warp your php

[twitter-dev] Re: using Twitter API with PHP

2009-08-23 Thread Abraham Williams
You might check out his book by @kmakice: http://www.amazon.com/Twitter-API-Running-Learn-Applications/dp/0596154615/ref=sr_1_1?ie=UTF8s=booksqid=1251084745sr=8-1 On Sun, Aug 23, 2009 at 15:45, Termanater13 termana...@gmail.com wrote: Ive been looking to use the Twitter API with my php Site