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

changing GraphAPI version to the latest, merging pull request related to Actions

This commit is contained in:
simus 2021-07-09 17:14:09 +05:00 committed by Neur0toxine
parent f017927e56
commit 4e2fbb8c7a
2 changed files with 6 additions and 4 deletions

2
go.mod
View file

@ -5,6 +5,8 @@ require (
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
)
go 1.16
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect

View file

@ -16,19 +16,19 @@ import (
const (
// ProfileURL is the API endpoint used for retrieving profiles.
// 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/"
// 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"
// SendSettingsURL is API endpoint for saving settings.
SendSettingsURL = "https://graph.facebook.com/v2.6/me/thread_settings"
SendSettingsURL = "https://graph.facebook.com/v11.0/me/thread_settings"
// MessengerProfileURL is the API endpoint where you set properties that define various aspects of the following Messenger Platform features.
// Used in the form https://graph.facebook.com/v2.6/me/messenger_profile?access_token=<PAGE_ACCESS_TOKEN>
// https://developers.facebook.com/docs/messenger-platform/reference/messenger-profile-api/
MessengerProfileURL = "https://graph.facebook.com/v2.6/me/messenger_profile"
MessengerProfileURL = "https://graph.facebook.com/v11.0/me/messenger_profile"
)
// Options are the settings used when creating a Messenger client.