From 1c29d3ccd0d27c8641da78fccb0cd6d5e43548f6 Mon Sep 17 00:00:00 2001 From: simus Date: Fri, 1 Jul 2022 14:17:35 +0500 Subject: [PATCH] changed Profile struct for instagram --- messenger.go | 10 +++++----- profile.go | 11 +++++++---- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/messenger.go b/messenger.go index 21a3456..98d9468 100644 --- a/messenger.go +++ b/messenger.go @@ -15,13 +15,13 @@ import ( ) const ( - // ProfileURL is the API endpoint used for retrieving profiles. - // Used in the form: https://graph.facebook.com/v11.0/?fields=&access_token= - ProfileURL = "https://graph.facebook.com/v11.0/" - // ProfileFields is a list of JSON field names which will be populated by the profile query. ProfileFields = "first_name,last_name,profile_pic" + // ProfileURL is the API endpoint used for retrieving profiles. + // Used in the form: https://graph.facebook.com/v14.0/?fields=&access_token= + ProfileURL = "https://graph.facebook.com/v14.0/" + // SendSettingsURL is API endpoint for saving settings. SendSettingsURL = "https://graph.facebook.com/v11.0/me/thread_settings" @@ -302,7 +302,7 @@ func (m *Messenger) handle(w http.ResponseWriter, r *http.Request) { respond(w, http.StatusBadRequest) return } - + if rec.Object != "page" && rec.Object != "instagram" { fmt.Println("Object is not page or instagram, undefined behaviour. Got", rec.Object) respond(w, http.StatusUnprocessableEntity) diff --git a/profile.go b/profile.go index e893121..d5ae231 100644 --- a/profile.go +++ b/profile.go @@ -11,8 +11,11 @@ type Profile struct { Gender string `json:"gender"` // instagram user profile - Username string `json:"username,omitempty"` - IsPrivate bool `json:"is_private,omitempty"` - FollowCount int32 `json:"follow_count,omitempty"` - FollowedByCount int32 `json:"followed_by_count,omitempty"` + Username string `json:"username,omitempty"` + IsPrivate bool `json:"is_private,omitempty"` + //FollowCount int32 `json:"follow_count,omitempty"` + FollowedByCount int32 `json:"follower_count,omitempty"` // by the documentation followed_by_count + IsVerifiedUser bool `json:"is_verified_user"` + IsUserFollowBusiness bool `json:"is_user_follow_business"` + IsBusinessFollowUser bool `json:"is_business_follow_user"` }