From 8d546920cd8e44ae3f1e4adf612489ec41c81e67 Mon Sep 17 00:00:00 2001 From: Ayomide Onigbinde Date: Sun, 30 Dec 2018 13:37:18 +0100 Subject: [PATCH] change the default user profile fields; fix minor typo --- message.go | 2 +- messenger.go | 10 ++++------ profile.go | 1 + 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/message.go b/message.go index 30a913c..9948504 100644 --- a/message.go +++ b/message.go @@ -2,7 +2,7 @@ package messenger import "time" -// Message represents a Facebook messenge message. +// Message represents a Facebook messenger message. type Message struct { // Sender is who the message was sent from. Sender Sender `json:"-"` diff --git a/messenger.go b/messenger.go index 8f39017..4bde940 100644 --- a/messenger.go +++ b/messenger.go @@ -26,8 +26,8 @@ const ( ) var ( - // NOTE: If you change this slice you should update the comment on the ProfileByID function below too. - defaultProfileFields = []string{"first_name", "last_name", "profile_pic", "locale", "timezone", "gender"} + // NOTE: If you change this slice you should update the comment on the ProfileByID function below too. + defaultProfileFields = []string{"name", "first_name", "last_name", "profile_pic"} ) // Options are the settings used when creating a Messenger client. @@ -156,14 +156,12 @@ func (m *Messenger) Handler() http.Handler { // ProfileByID retrieves the Facebook user profile associated with that ID // when no profile fields are specified it uses some sane defaults. -// +// // These default fields are: +// - Name // - First name // - Last name // - Profile picture -// - Locale -// - Timezone -// - Gender func (m *Messenger) ProfileByID(id int64, profileFields ...string) (Profile, error) { p := Profile{} url := fmt.Sprintf("%v%v", ProfileURL, id) diff --git a/profile.go b/profile.go index 002edb7..de3bbbc 100644 --- a/profile.go +++ b/profile.go @@ -2,6 +2,7 @@ package messenger // Profile is the public information of a Facebook user type Profile struct { + Name string `json:"name"` FirstName string `json:"first_name"` LastName string `json:"last_name"` ProfilePicURL string `json:"profile_pic"`