简体   繁体   中英

Twitter API to search users by their mail id

I was developing an application and I was wondering whether there is any way to search a particular user by his/her mail id. I came to know that twitter once gave such API's but later on withdrew them taking into consideration security issues. So is there any method by which I can search a user via the registered email id ?

i havent been able to using tmhOAuth
this was the return array and didnt see anything about email

stdClass Object
(
        [geo] => 
        [favorited] => 
        [text] => Don't slip up http://t.co/cndsjkA
        [possibly_sensitive] => 
        [in_reply_to_status_id_str] => 
        [in_reply_to_status_id] => 
        [in_reply_to_user_id_str] => 
        [in_reply_to_user_id] => 
        [truncated] => 
        [entities] => stdClass Object
                (
                        [hashtags] => Array
                                (
                                )

                        [user_mentions] => Array
                                (
                                )

                        [media] => Array
                                (
                                        [0] => stdClass Object
                                                (
                                                        [type] => photo
                                                        [indices] => Array
                                                                (
                                                                        [0] => 14
                                                                        [1] => 34
                                                                )

                                                        [sizes] => stdClass Object
                                                                (
                                                                        [medium] => stdClass Object
                                                                                (
                                                                                        [resize] => fit
                                                                                        [w] => 360
                                                                                        [h] => 450
                                                                                )

                                                                        [thumb] => stdClass Object
                                                                                (
                                                                                        [resize] => crop
                                                                                        [w] => 150
                                                                                        [h] => 150
                                                                                )

                                                                        [small] => stdClass Object
                                                                                (
                                                                                        [resize] => fit
                                                                                        [w] => 340
                                                                                        [h] => 425
                                                                                )

                                                                        [large] => stdClass Object
                                                                                (
                                                                                        [resize] => fit
                                                                                        [w] => 360
                                                                                        [h] => 450
                                                                                )

                                                                )

                                                        [media_url_https] => https://p.twimg.com/****************.jpg
                                                        [url] => http://t.co/cndsjkA
                                                        [id_str] => ******************
                                                        [display_url] => pic.twitter.com/cndsjkA
                                                        [id] => ******************
                                                        [media_url] => http://p.twimg.com/****************.jpg
                                                        [expanded_url] => http://twitter.com/myapp/status/******************/photo/1
                                                )

                                )

                        [urls] => Array
                                (
                                )

                )

        [source] => myCompany demo
        [retweeted] => 
        [retweet_count] => 0
        [id_str] => ******************
        [coordinates] => 
        [user] => stdClass Object
                (
                        [default_profile_image] => 1
                        [follow_request_sent] => 
                        [following] => 
                        [profile_background_color] => C0DEED
                        [profile_image_url] => http://a0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png
                        [description] => 
                        [profile_background_tile] => 
                        [favourites_count] => 0
                        [friends_count] => 11
                        [statuses_count] => 1
                        [verified] => 
                        [profile_sidebar_fill_color] => DDEEF6
                        [notifications] => 
                        [profile_background_image_url_https] => https://si0.twimg.com/images/themes/theme1/bg.png
                        [profile_sidebar_border_color] => C0DEED
                        [url] => 
                        [location] => 
                        [listed_count] => 0
                        [contributors_enabled] => 
                        [geo_enabled] => 
                        [profile_image_url_https] => https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png
                        [id_str] => 595959934
                        [lang] => en
                        [profile_use_background_image] => 1
                        [time_zone] => Atlantic Time (Canada)
                        [protected] => 
                        [default_profile] => 1
                        [profile_text_color] => 333333
                        [followers_count] => 2
                        [name] => myCompany
                        [is_translator] => 
                        [show_all_inline_media] => 
                        [profile_background_image_url] => http://a0.twimg.com/images/themes/theme1/bg.png
                        [screen_name] => myapp
                        [id] => 595959934
                        [utc_offset] => -14400
                        [created_at] => Fri Jun 01 00:21:13 +0000 2012
                        [profile_link_color] => 0084B4
                )

        [contributors] => 
        [in_reply_to_screen_name] => 
        [id] => ******************
        [place] => 
        [created_at] => Tue Aug 14 15:28:23 +0000 2012
)

According to this discussion on Twitter Developers , the username and the user's e-mail are two totally different things. The following quote was written by a Twitter Technician ( @episod ) in the discussion :

Both Facebook and Google are predicated on actual identity -- email address makes a lot of sense there. Twitter is less firmly attached to real-world identity -- once could say the email address associated with an account is more of a formality than anything else, not a piece of information that's necessarily attached to the identity of the account or its owner.

So it seems that you won't be able to retrieve a username through the Twitter API with the user's e-mail. The only thing to do is sending an e-mail to the user in order to ask him (or her) its Twitter username.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM