This operation is not supported.
GET /<IG_USER_ID>/tags
Returns a list of IG Media objects in which an IG User has been tagged by another Instagram user.
Private IG Media objects will not be returned.
Type | Description |
---|---|
Not applicable. | |
If the token is from a User whose Page role was granted via the Business Manager, one of the following permissions is also required: | |
The app user must be able to perform appropriate Tasks on the Page based on the Permissions requested by the app. |
GET https://graph.facebook.com/<IG_USER_ID>/tags ?fields=<LIST_OF_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 included in the response. If omitted, default fields will be returned. |
Use the fields
query string parameter to specify fields you want included on any returned IG Media objects.
Use the fields
query string parameter to specify Edges you want included on any returned IG Media objects.
A JSON-formatted object containing IG Media objects.
{ "<FIELD>":"<VALUE>", ... }
This edge supports cursor-based pagination so the response will include before
and after
cursors if the response contains multiple pages of data. Unlike standard cursor-based pagination, however, the response will not include previous
or next
fields, so you will have to use the before
and after
cursors to construct previous
and next
query strings manually in order to page through the returned data set.
GET graph.facebook.com/17841405822304914/tags ?fields=id,username &access_token=EAADd...
{ "data": [ { "id": "18038...", "username": "keldo..." }, { "id": "17930...", "username": "ashla..." }, { "id": "17931...", "username": "jaypo..." } ] }
This operation is not supported.
This operation is not supported.