Emil
Emil

Reputation: 7256

Twitter-oAuth-library for iPhone development

I'm looking for a oAuth/xAuth-Twitter-library for iPhone/Objective-C. I found MGTwitterEngine, but that didn't work, as they don't even link to the external libraries needed for it to work (heck, the example you download doesn't even work out-of-the-box!).

So, do you know any alternative libraries that do this, or how I can make MGTwitterEngine work? Thank you.

Upvotes: 2

Views: 2747

Answers (4)

Julian Osorio
Julian Osorio

Reputation: 1168

My recomendation will be to use bengottlieb's file, it is an excellent option because it has Twitter+OAuth, so you have connection to the API and the methods to the desired authentication. it is a unification of several efforts into a simplificated library. Just to update a litle the answer.

Here is the gitHub link with the source code:

https://github.com/bengottlieb/Twitter-OAuth-iPhone

Upvotes: 0

mxcl
mxcl

Reputation: 26883

There is now: http://github.com/tweetdeck/TDOAuth which TweetDeck use in their iPhone and iPad clients.

Upvotes: 2

grobbins
grobbins

Reputation: 1564

A general OAuth library for iPhone that works with Twitter is gtm-oauth

Upvotes: 1

vodkhang
vodkhang

Reputation: 18741

Why do you still use OAuth for Twitter? Twitter recommends to use XAuth as an alternative for Oauth in iPhone

If you really want to use OAuth, then I can suggest you this library. We used it before for OAuth, but now we changed to XAuth already

Upvotes: 1

Related Questions