rest - Instagram API response with users not in caption -


i want know users tagged in photo on instagram, don't appear in caption.

anyone know if possible? is, response contain users tagged, not physically in caption text?

https://www.instagram.com/developer/endpoints/tags/

the property want called users_in_photo. array contains array of user objects who've been tagged in photo. contains geometric coordinates in photo user has been "tagged" at.

here example response using /media/media_id endpoint:

endpoint documentation -> https://www.instagram.com/developer/endpoints/media/#get_media

{     "data": {         "users_in_photo": [{             "user": {                 "username": "kevin",                 "full_name": "kevin s",                 "id": "3",                 "profile_picture": "..."             },             "position": {                 "x": 0.315,                 "y": 0.9111             }         }],         // rest of object...     } } 

Comments

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -