iphone - Twitter API: How would I pull latest statuses from user_timeline with API 1.1 -


i'm trying basic, want call twitter api iphone app in order receive public data such public timeline of user.

i read 2 hours twitter developer doc , still don't understand how should implement this...

i don't want users connect or authenticate via twitter. read option use "application-only authentication" - have opened application under account , have api key , secret.

please give me example on how use twitter api within iphone app.

p.s. can see api calls available via "application-only authentication" ?

using bearer token app-only authentication right thing do.

you find example sttwitter library in following answer: twitter oauth , accesstoken statuses/user_timeline in objective-c

to know calls available app-only authentication, check "resource information > authentication" on right of each api resource documentation https://dev.twitter.com/docs/api/1.1

generally speaking, endpoints don't require user context (like posting, retweet, mark favorite, ...) available app-only auth https://dev.twitter.com/docs/auth/application-only-auth


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -