cylee
cylee

Reputation: 570

Is it able to view protected accounts using twitter api?

I'm using Python to get texts of tweets from twitter using tweepy and is it possible to get ID and password from user, pass it to twitter api, and access to the tweets and get json data.

I read "User timelines belonging to protected users may only be requested when the authenticated user either “owns” the timeline or is an approved follower of the owner." but not sure whether it means the programmer must be accessible to the protected account or the api can access to protected account by receiving ID and password.

Upvotes: 1

Views: 1370

Answers (1)

Joe Mayo
Joe Mayo

Reputation: 7513

The User Credentials is what determines permissions. With OAuth a user gives your app permission to act on their behalf.

Upvotes: 2

Related Questions