首页 文章

检索Instagram用户电子邮件地址

提问于
浏览
1

我已经阅读了Instagram开发人员文档,并尝试了这个最可能的 endpoints

https://api.instagram.com/v1/users/user-id?access_token=ACCESS-TOKEN https://api.instagram.com/v1/users/self?access_token=ACCESS-TOKEN

我可以得到结果,但没有返回电子邮件地址 . 是否存在可以绕过此 endpoints 获取Instagram电子邮件地址的黑客攻击?

我需要这个用于Instagram登录和注册.. TIA

1 回答

  • 3

    NO, it is not possible 在Instagram中 . API do not 始终返回用户电子邮件 .

    example

    Request URL

    https://api.instagram.com/v1/users/{user-id}/?access_token=ACCESS-TOKEN
    

    输出 Response

    {
    "data": {
        "id": "1574083",
        "username": "snoopdogg",
        "full_name": "Snoop Dogg",
        "profile_picture": "http://distillery.s3.amazonaws.com/profiles/profile_1574083_75sq_1295469061.jpg",
        "bio": "This is my bio",
        "website": "http://snoopdogg.com",
        "counts": {
            "media": 1320,
            "follows": 420,
            "followed_by": 3410
        }
    }
    

    更多information

相关问题