Represents an Instagram user profile.
This operation is not supported.
GET /{user-id}
Get fields and edges on a User.
Instagram Legacy API User IDs are not supported.
Type | Requirement |
---|---|
|
GET https://graph.instagram.com/{user-id} ?fields={fields} &access_token={access-token}
Include the following query string parameters to augment the request.
Key | Value |
---|---|
| The app user's Instagram User Access Token. |
| A comma-separated list of fields and edges you want returned. If omitted, default fields will be returned. |
You can use the fields
query string parameter to request the following fields on a User.
Field Name | Description |
---|---|
| The User's account type. Can be |
| The User's ID. |
| The number of Media on the User. This field requires the |
| The User's username. |
You can request the following edges as path parameters or by using the fields
query string parameter.
A JSON-formatted object containing default and requested fields and edges.
{ "{field}":"{value}", ... }
curl -X GET \ 'https://graph.instagram.com/17841405793187218?fields=id,username&access_token=IGQVJ...'
{ "id": "17841405793187218", "username": "jayposiris" }
This operation is not supported.
This operation is not supported.