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 2022-06-30 10:04:17 +05:00 committed by Neur0toxine
parent 97087a8622
commit 51c7c1bd0e
2 changed files with 4 additions and 4 deletions

View file

@ -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
}

View file

@ -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.