12

I'm using a consumer facebook developer account. I need to get user media information from the following endpoint. Particularly need to get user full name, email and profile picture url

Request:

https://graph.instagram.com/{user-id}?fields=id,username,account_type,media_count&access_token=xxxxxxxxxxxxxxxxxxxxxxx

Response:

{
  id: "3454354543543345",
  username: "test",
  account_type: "PERSONAL",
  media_count: 22
}

Referred from the doc: getting-profile-info user-fields

dwayneJohn
  • 919
  • 1
  • 12
  • 30

1 Answers1

0

If just Graph API only, I am afraid email and profile picture are not possible at this stage.

And now they even make it more restrict by forbidding people from accessing the account data json via API call, which was originally one major way people use to access to user's profile picture url.

Terry Windwalker
  • 1,343
  • 2
  • 16
  • 36