0

I'm using abraham's twitter oauth and I cannot figure out how to get email parameter, it does not provide a list of parameters. I tried using $content->{email}; but it returns a blank array, any idea how can I get the email?

Niket Malik
  • 1,075
  • 1
  • 14
  • 23

1 Answers1

1

There is NO way you can get email address of a twitter user. Twitter doesn't provide it in their API.

https://dev.twitter.com/docs/faq#6718

tjrburgess
  • 757
  • 1
  • 8
  • 18
  • Any workaround for it? Like search for email by using screen name, but yet it has limits as twitter gives an option to search by email, but still is there a workaround? – Niket Malik Jul 10 '13 at 04:26
  • Unfortunately not. I suggest you check out the twitter documentation starting with https://dev.twitter.com/docs/api/1.1/get/users/search – tjrburgess Jul 10 '13 at 11:08