improve optional ProfileFields
This commit is contained in:
parent
0295eba4aa
commit
ecf32d3b62
2 changed files with 3 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,6 +6,7 @@
|
|||
# Folders
|
||||
_obj
|
||||
_test
|
||||
.idea
|
||||
|
||||
# Architecture specific extensions/prefixes
|
||||
*.[568vq]
|
||||
|
|
|
@ -17,7 +17,8 @@ const (
|
|||
// Used in the form: https://graph.facebook.com/v2.6/<USER_ID>?fields=<PROFILE_FIELDS>&access_token=<PAGE_ACCESS_TOKEN>
|
||||
ProfileURL = "https://graph.facebook.com/v2.6/"
|
||||
// ProfileFields is a list of JSON field names which will be populated by the profile query.
|
||||
ProfileFields = "first_name,last_name,profile_pic,locale,timezone,gender"
|
||||
//ProfileFields = "first_name,last_name,profile_pic,locale,timezone,gender"
|
||||
ProfileFields = "first_name,last_name,profile_pic"
|
||||
// SendSettingsURL is API endpoint for saving settings.
|
||||
SendSettingsURL = "https://graph.facebook.com/v2.6/me/thread_settings"
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue