views:

29

answers:

2

Hi ,

i got one api after google search,

here is the link send-tweets

How to use this api,

i should install any thing ,

what is the procedure for this api,

+1  A: 

Its using "curl".

Twitter Dev

Google Code Twitter API

here is the Twitter dev site with libraries. Under Google Code you can find a Twitter API class.

Stony
google code not working
Bharanikumar
+2  A: 

Use this OAuth library: http://github.com/abraham/twitteroauth

$parameters = array('status' => date('Hi'));
$status = $connection->post('statuses/update', $parameters);

That is the post to wall method in the Twitter OAuth library, you will need to authenticate with OAuth first, the code is provided in the examples section of the above download.

Gazler
where i find the exact snippet, but i have some of oauth snippet but that are not working fine.
Bharanikumar