naresh
naresh

Reputation: 107

How to post the tweet in twitter from our application?

I am developing one application. In that I want to post a tweet on twitter.

I am already posting a tweet by using twitter agent, but that tweet was not updated.

Please guide me how to post the tweet from our application.

Upvotes: 0

Views: 566

Answers (3)

Kyle Howells
Kyle Howells

Reputation: 3553

Wait for iOS 5.0 and use the built in twitter support.

(twitter support isn't under NDA it was in the keynote)

Upvotes: 0

Splendid
Splendid

Reputation: 1061

I recommend to use MGTwitterEngine or SAOauthTwitterengine. Get sample code here and got to work.

[self.twitterEngine sendUpdate:yourtexttopost];

Upvotes: 2

beryllium
beryllium

Reputation: 29767

Use Twitter API and some wrappers for iOS

MGTwitterEngine

Twitter API Wiki

Upvotes: 1

Related Questions