From 4e2fbb8c7a3e634f68aaabbe776f565efcb39cfa Mon Sep 17 00:00:00 2001 From: simus Date: Fri, 9 Jul 2021 17:14:09 +0500 Subject: [PATCH] changing GraphAPI version to the latest, merging pull request related to Actions --- go.mod | 2 ++ messenger.go | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 18da7b6..26c9513 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/messenger.go b/messenger.go index de7b267..51fb080 100644 --- a/messenger.go +++ b/messenger.go @@ -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/?fields=&access_token= - ProfileURL = "https://graph.facebook.com/v2.6/" + // Used in the form: https://graph.facebook.com/v11.0/?fields=&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= // 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.