instagram_basic permissioninstagram_manage_messages permissionpages_manage_metadata permissionspages_read_engagement permissionpages_show_list permissionMODERATE task on the Page| Field Name | Description |
|---|---|
namestring | The customers’s name (can be null if name not set) |
profile_picurl | The URL for the customer’s profile picture (can be null if profile pic not set). The URL will expire in a few days. |
is_verified_userboolean | Verification status for the customer |
follower_countint | Follower count for the customer |
is_user_follow_businessboolean | Indicates whether the customer follows the business or not |
is_business_follow_userboolean | Indicates whether the business follows the customer or not |
usernamestring | The username for the customer’s Instagram account |
GET request to the Instagram Scoped ID node for the customer and include the fields you would like to view.curl -X GET "https://graph.facebook.com/v25.0/<INSTAGRAM_SCOPED_USER_ID>
?fields=name,username,profile_pic,follower_count,is_user_follow_business,is_business_follow_user
&access_token=page-access-token"
{ "name": "Peter Chang", "username": "peter_chang_live", "profile_pic": "https://fbcdn-profile-...", "follower_count": 1234 "is_user_follow_business": false, "is_business_follow_user": true, }