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

ability to specify send api version

This commit is contained in:
Pavel 2021-06-04 14:34:32 +03:00
parent 46e5525929
commit e926964a0d
2 changed files with 35 additions and 19 deletions

View file

@ -21,6 +21,8 @@ const (
ProfileFields = "first_name,last_name,profile_pic"
// SendSettingsURL is API endpoint for saving settings.
SendSettingsURL = "https://graph.facebook.com/v2.6/me/thread_settings"
// DefaultSendAPIVersion is a default Send API version.
DefaultSendAPIVersion = "v2.11"
)
// Options are the settings used when creating a Messenger client.
@ -40,6 +42,8 @@ type Options struct {
WebhookURL string
// Mux is shared mux between several Messenger objects
Mux *http.ServeMux
// SendAPIVersion is an Send API version.
SendAPIVersion string
}
// MessageHandler is a handler used for responding to a message containing text.
@ -78,6 +82,7 @@ type Messenger struct {
verifyHandler func(http.ResponseWriter, *http.Request)
verify bool
appSecret string
sendAPIVersion string
}
// New creates a new Messenger. You pass in Options in order to affect settings.
@ -87,16 +92,21 @@ func New(mo Options) *Messenger {
}
m := &Messenger{
mux: mo.Mux,
token: mo.Token,
verify: mo.Verify,
appSecret: mo.AppSecret,
mux: mo.Mux,
token: mo.Token,
verify: mo.Verify,
appSecret: mo.AppSecret,
sendAPIVersion: mo.SendAPIVersion,
}
if mo.WebhookURL == "" {
mo.WebhookURL = "/"
}
if m.sendAPIVersion == "" {
m.sendAPIVersion = DefaultSendAPIVersion
}
m.verifyHandler = newVerifyHandler(mo.VerifyToken)
m.mux.HandleFunc(mo.WebhookURL, m.handle)
@ -340,8 +350,9 @@ func (m *Messenger) dispatch(r Receive) {
}
resp := &Response{
to: Recipient{info.Sender.ID},
token: m.token,
to: Recipient{info.Sender.ID},
token: m.token,
sendAPIVersion: m.sendAPIVersion,
}
switch a {
@ -401,8 +412,9 @@ func (m *Messenger) dispatch(r Receive) {
// Response returns new Response object
func (m *Messenger) Response(to int64) *Response {
return &Response{
to: Recipient{to},
token: m.token,
to: Recipient{to},
token: m.token,
sendAPIVersion: m.sendAPIVersion,
}
}
@ -414,8 +426,9 @@ func (m *Messenger) Send(to Recipient, message string, messagingType MessagingTy
// SendGeneralMessage will send the GenericTemplate message
func (m *Messenger) SendGeneralMessage(to Recipient, elements *[]StructuredMessageElement, messagingType MessagingType, metadata string, tags ...string) (QueryResponse, error) {
r := &Response{
token: m.token,
to: to,
token: m.token,
to: to,
sendAPIVersion: m.sendAPIVersion,
}
return r.GenericTemplate(elements, messagingType, metadata, tags...)
}
@ -423,8 +436,9 @@ func (m *Messenger) SendGeneralMessage(to Recipient, elements *[]StructuredMessa
// SendWithReplies sends a textual message to a user, but gives them the option of numerous quick response options.
func (m *Messenger) SendWithReplies(to Recipient, message string, replies []QuickReply, messagingType MessagingType, metadata string, tags ...string) (QueryResponse, error) {
response := &Response{
token: m.token,
to: to,
token: m.token,
to: to,
sendAPIVersion: m.sendAPIVersion,
}
return response.TextWithReplies(message, replies, messagingType, metadata, tags...)
@ -433,8 +447,9 @@ func (m *Messenger) SendWithReplies(to Recipient, message string, replies []Quic
// Attachment sends an image, sound, video or a regular file to a given recipient.
func (m *Messenger) Attachment(to Recipient, dataType AttachmentType, url string, messagingType MessagingType, metadata string, tags ...string) (QueryResponse, error) {
response := &Response{
token: m.token,
to: to,
token: m.token,
to: to,
sendAPIVersion: m.sendAPIVersion,
}
return response.Attachment(dataType, url, messagingType, metadata, tags...)

View file

@ -20,7 +20,7 @@ type MessagingType string
const (
// SendMessageURL is API endpoint for sending messages.
SendMessageURL = "https://graph.facebook.com/v2.11/me/messages"
SendMessageURL = "https://graph.facebook.com/%s/me/messages"
// ImageAttachment is image attachment type.
ImageAttachment AttachmentType = "image"
@ -72,8 +72,9 @@ func getFacebookQueryResponse(r io.Reader) (QueryResponse, error) {
// Response is used for responding to events with messages.
type Response struct {
token string
to Recipient
token string
to Recipient
sendAPIVersion string
}
// Text sends a textual message.
@ -205,7 +206,7 @@ func (r *Response) AttachmentData(dataType AttachmentType, filename string, file
multipartWriter.WriteField("recipient", fmt.Sprintf(`{"id":"%v"}`, r.to.ID))
multipartWriter.WriteField("message", fmt.Sprintf(`{"attachment":{"type":"%v", "payload":{}}}`, dataType))
req, err := http.NewRequest("POST", SendMessageURL, &body)
req, err := http.NewRequest("POST", fmt.Sprintf(SendMessageURL, r.sendAPIVersion), &body)
if err != nil {
return qr, err
}
@ -294,7 +295,7 @@ func (r *Response) DispatchMessage(m interface{}) (QueryResponse, error) {
return res, err
}
req, err := http.NewRequest("POST", SendMessageURL, bytes.NewBuffer(data))
req, err := http.NewRequest("POST", fmt.Sprintf(SendMessageURL, r.sendAPIVersion), bytes.NewBuffer(data))
if err != nil {
return res, err
}