Home > Mobile >  How do I fetch a Twitter account's email using Python and Tweepy?
How do I fetch a Twitter account's email using Python and Tweepy?

Time:04-04

I was wondering how I could fetch the email for a Twitter account using Python and Tweepy. I have the user authentication settings all set up and the "Request email from users" section on read. I am just wondering what the command/commands are to actually fetch the email. Thanks for your help :D

CodePudding user response:

You can use GET account/verify_credentials with API.verify_credentials to retrieve the email address of the user you're authenticated as.

  • Related