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