From 51c7c1bd0e68034352bd4caa9ba537b422198c17 Mon Sep 17 00:00:00 2001 From: simus Date: Thu, 30 Jun 2022 10:04:17 +0500 Subject: [PATCH] changing GraphAPI version to the latest, merging pull request related to Actions --- messenger.go | 6 +++--- response.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/messenger.go b/messenger.go index 51fb080..21a3456 100644 --- a/messenger.go +++ b/messenger.go @@ -302,9 +302,9 @@ func (m *Messenger) handle(w http.ResponseWriter, r *http.Request) { respond(w, http.StatusBadRequest) return } - - if rec.Object != "page" { - fmt.Println("Object is not page, undefined behavior. Got", rec.Object) + + if rec.Object != "page" && rec.Object != "instagram" { + fmt.Println("Object is not page or instagram, undefined behaviour. Got", rec.Object) respond(w, http.StatusUnprocessableEntity) return } diff --git a/response.go b/response.go index f2a19c1..eb2804a 100644 --- a/response.go +++ b/response.go @@ -24,7 +24,7 @@ type ImageAspectRatio string const ( // DefaultSendAPIVersion is a default Send API version - DefaultSendAPIVersion = "v2.11" + DefaultSendAPIVersion = "v11.0" // SendMessageURL is API endpoint for sending messages. SendMessageURL = "https://graph.facebook.com/%s/me/messages" // ThreadControlURL is the API endpoint for passing thread control.