1
0
Fork 0
mirror of synced 2025-04-04 21:53:37 +03:00

changed Profile struct for instagram

This commit is contained in:
simus 2022-07-01 14:17:35 +05:00 committed by Neur0toxine
parent 457e45b0a8
commit 1c29d3ccd0
2 changed files with 12 additions and 9 deletions

View file

@ -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/<USER_ID>?fields=<PROFILE_FIELDS>&access_token=<PAGE_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/<USER_ID>?fields=<PROFILE_FIELDS>&access_token=<PAGE_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)

View file

@ -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"`
}