Bharanikumar
Bharanikumar

Reputation: 25733

twitter api problem

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,

Upvotes: 2

Views: 178

Answers (2)

Gazler
Gazler

Reputation: 84140

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.

Upvotes: 3

René Höhle
René Höhle

Reputation: 27285

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.

Upvotes: 1

Related Questions