When you implement OAuth for Twitter, you get two tokens called OAuthToken and OAuthTokenSecret. You store these values ββin a settings file or in a cookie or in a database (or something else), and then use these tokens when sending API requests in the future. This eliminates the need for user authorization of the application each time.
Now, if the user revokes your rights to the application, then the tokens will no longer work.
source share