changing GraphAPI version to the latest, merging pull request related to Actions
This commit is contained in:
parent
97087a8622
commit
51c7c1bd0e
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue