0

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?

Raza Ahmed
  • 2,661
  • 2
  • 35
  • 46
  • 1
    You 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 Answers1

0

As @BoltClock said, you need to store the token provided by twitter and use it.

Check this link that may help you:

implementing-sign-twitter

authenticate

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