Twitter API以按邮件ID搜索用户

时间:2012-08-14 15:25:03

标签: api search twitter

我正在开发一个应用程序,我想知道是否有任何方法可以通过他/她的邮件ID搜索特定用户。 我开始知道twitter曾经提供过这样的API,但后来考虑到了安全问题而撤回了它们。 那么有什么方法可以通过注册的电子邮件ID搜索用户吗?

2 个答案:

答案 0 :(得分:0)

我还没能使用tmhOAuth
这是返回数组,并没有看到任何关于电子邮件

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
)

答案 1 :(得分:0)

根据this discussion上的Twitter Developers,用户名和用户的电子邮件是完全不同的两件事。以下引用由Twitter技术人员(@episod)在讨论中撰写:

  

Facebook和谷歌都以实际身份为依据 - 电子邮件   地址在那里很有意义。 Twitter不那么坚定了   现实世界的身份 - 曾经可以说与之相关的电子邮件地址   账户更像是一种形式,而不是一块   信息的必然附属于。的身份   帐户或其所有者。

因此,您似乎无法通过Twitter API使用用户的电子邮件检索用户名。唯一要做的就是向用户发送电子邮件,以便向他(或她)询问其Twitter用户名。