I'm using twitterizer to signin to my wpf program. Every time when the program is executed, twitter generated pin is stored in a variable and then app runs. Is it possible to authenticate only once and then remember that approval? If possible, then how?
Asked
Active
Viewed 67 times
0
-
1You need to store the access token and access token secret on disk, then check for those tokens and use them on next startup. – BoltClock Oct 26 '12 at 12:15
1 Answers
0
As @BoltClock said, you need to store the token provided by twitter and use it.
Check this link that may help you:

Rafael Colucci
- 6,018
- 4
- 52
- 121
-
thanks @BoltClock. Another question is also like mine. [Storing Twitter access token using Twitterizer](http://stackoverflow.com/questions/7470549/storing-twitter-access-token-using-twitterizer) – Raza Ahmed Oct 26 '12 at 13:40