changed Profile struct for instagram
This commit is contained in:
parent
457e45b0a8
commit
1c29d3ccd0
2 changed files with 12 additions and 9 deletions
10
messenger.go
10
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/<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)
|
||||
|
|
11
profile.go
11
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"`
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue