Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Instagram API: Retrieving the email of currently the logged user

Is there a way to retrieve the email of currently logged user with the Instagram API?

This is the response I get to /v1/users/self:

{  
  "meta": {
    "code": 200
  },
  "data": {
    "username": "...",
    "bio": "",
    "website": "",
    "profile_picture": "...",
    "full_name": "...",
    "counts": {
      "media": 33,
      "followed_by": 9,
      "follows": 0
    },
    "id": "..."
}

I couldn't find anything related to permissions or additional options to the request.

Any ideas?

like image 259
Anton Petrov Avatar asked Jan 13 '23 16:01

Anton Petrov


1 Answers

No. Similar to twitter API, Instagram will not provide a user's email or other personal information aside from what you are already retrieving.

Reference: Instagram API docs

like image 98
chrisboustead Avatar answered Jan 31 '23 05:01

chrisboustead