Is there a way to get a user’s email ID after verifying his/her Twitter identity using OAuth?

The user’s email address can not be retrieved via the API. This is a deliberate design decision by the API team. UPDATE 2015.08.18: It is possible to request an email address from users, but it requires your app to be whitelisted. See https://dev.twitter.com/rest/reference/get/account/verify_credentials for details of the API call and this form to request whitelisting … Read more

Replies to a particular tweet, Twitter API

Here is the procedure to get the replies for a tweets when you fetch the tweet store the tweetId ie., id_str using twitter search api do the following query [q=”to:$tweeterusername”, sinceId = $tweetId] Loop all the results , the results matching the in_reply_to_status_id_str to $tweetid is the replies for the post.

Is there a way to get an user’s email ID after verifying his/her Twitter identity using OAuth?

The user’s email address can not be retrieved via the API. This is a deliberate design decision by the API team. UPDATE 2015.08.18: It is possible to request an email address from users, but it requires your app to be whitelisted. See https://dev.twitter.com/rest/reference/get/account/verify_credentials for details of the API call and this form to request whitelisting … Read more

tech