Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am creating iphone app with full functionality of twitter and at the first time user loging page with access_token so i want this token without login after login i replace this one with new but at first time i need this access token

share|improve this question
What do you mean with "without login"? – Heiko Rupp Apr 13 '11 at 12:29
my question is at first time which url i pass for login – Dhanesh Apr 14 '11 at 4:50

closed as not a real question by Bill the Lizard Feb 9 at 16:14

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

When a Twitter user authorizes your application for access to their account, the Twitter API will hand your application two tokens: OAuthToken and OAuthTokenSecret. You store these tokens in a settings file (or cookie or whatever).

From that point on, you give Twitter those tokens with the tokens assigned to your application (i.e. ConsumerKey and ConsumerKeySecret) to connect to Twitter as that user.

share|improve this answer
thanks for reply but at first time which url i pass for loging screen so that after login it give me OAuthToken and OAuthTokenSecret. please help me i am confused – Dhanesh Apr 14 '11 at 4:48
Your brest bet will be to look at how this has been done in other libraries and follow their example. This page at Twitter lists many libraries that have solved this problem: apiwiki.twitter.com/w/page/22554657/OAuth-Examples – DWRoelands Apr 14 '11 at 14:29

Not the answer you're looking for? Browse other questions tagged or ask your own question.