0

私はアプリケーションを開発していましたが、特定のユーザーをメール ID で検索する方法があるかどうか疑問に思っていました。Twitter がかつてそのような API を提供していたことを知りましたが、後にセキュリティ上の問題を考慮して撤回しました。登録された電子メールIDを介してユーザーを検索できる方法はありますか?

4

2 に答える 2

0

Twitter Developersでのこの議論によると、ユーザー名とユーザーの電子メールはまったく異なるものです。次の引用は、Twitterの技術者(@episod)がディスカッションで書いたものです。

FacebookとGoogleはどちらも、実際のIDを前提としています。メールアドレスは、そこでは非常に理にかなっています。Twitterは、実際のIDにあまりしっかりと結び付けられていません。かつて、アカウントに関連付けられた電子メールアドレスは、アカウントまたはその所有者のIDに必ずしも関連付けられている情報ではなく、他の何よりも形式的なものであると言えます。

そのため、ユーザーの電子メールを使用してTwitterAPIを介してユーザー名を取得することはできないようです。ユーザーにTwitterのユーザー名を尋ねるために、ユーザーに電子メールを送信するだけです。

于 2012-08-15T02:47:36.650 に答える
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
)
于 2012-08-14T15:32:33.943 に答える