From 8b09ea69e9003ef356a43482a1fcac8f35e6514b Mon Sep 17 00:00:00 2001 From: Harrison Shoebridge Date: Sun, 16 Dec 2018 08:43:53 +1100 Subject: [PATCH] Update comments --- messenger.go | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/messenger.go b/messenger.go index 03e578f..8f39017 100644 --- a/messenger.go +++ b/messenger.go @@ -26,6 +26,7 @@ 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"} ) @@ -154,7 +155,15 @@ func (m *Messenger) Handler() http.Handler { } // ProfileByID retrieves the Facebook user profile associated with that ID -// when no profile fields are specified it defaults to defaultProfileFields +// when no profile fields are specified it uses some sane defaults. +// +// These default fields are: +// - 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)