Pablo Melana-Dayton
Pablo Melana-Dayton

Reputation: 93

python - Getting tweepy authentication from password and username

I'm using tweepy's streaming service and want to be able to have multiple users (on different computers) access this. This rules out the use of a single set of oauth identifications. How can I get this authentication using just the username and password of the user?

Upvotes: 0

Views: 376

Answers (1)

Aaron Hill
Aaron Hill

Reputation: 3196

Twitter no longer supports Basic Auth (using usernames and passwords). However, Twitter does provide xAuth, which allows you to use a username and password, but only if you really need to.

Couldn't you store different OAuth tokens, one for each user?

Upvotes: 1

Related Questions