1
0
mirror of synced 2024-11-22 04:46:05 +03:00
Package messenger is used for making bots for use with Facebook messenger
Go to file
2018-03-18 20:42:28 +01:00
examples/basic Move bot example to /examples/basic 2018-03-18 20:42:28 +01:00
.gitignore Add handling receiving messages 2016-04-13 16:14:23 +10:00
.travis.yml Add travis-ci config 2018-03-15 20:41:23 +01:00
actions.go Add handler for AccountLinking process 2018-03-18 20:42:28 +01:00
LICENSE Initial commit 2016-04-13 10:35:25 +10:00
message.go Add handler for AccountLinking process 2018-03-18 20:42:28 +01:00
messenger_test.go Add tests for (*Messenger).dispatch 2018-03-11 23:00:32 +01:00
messenger.go Add handler for AccountLinking process 2018-03-18 20:42:28 +01:00
profile.go Update timezone to be of float type (#24) 2017-01-23 09:23:21 -08:00
README.md Add travis-ci config 2018-03-15 20:41:23 +01:00
receiving.go Add handler for AccountLinking process 2018-03-18 20:42:28 +01:00
response.go added messaging_type for FB send API request (#37) 2018-02-06 13:15:36 +11:00
settings.go Add missing fields of CallToActionItem (#22) 2016-12-09 21:04:14 +11:00

Messenger GoDoc Build Status

This is a Go library for making bots to be used on Facebook messenger. It is built on the Messenger Platform. One of the main goals of the project is to implement it in an idiomatic and easy to use fashion.

You can find an example of how to use it here

Tips

  • Follow the quickstart guide for getting everything set up!
  • You need a Facebook development app, and a Facebook page in order to build things.
  • Use ngrok to tunnel your locally running bot so that Facebook can reach the webhook.

Breaking Changes

paked/messenger is a pretty stable library however, changes will be made which might break backwards compatibility. For the convenience of its users, these are documented here.

  • 06/2/18: Added messaging_type field for message send API request as it is required by FB
  • 23/1/17: Updating timezone type to float64 in profile struct
  • 12/9/16: Removing unused parameter text string from function (r *Response) GenericTemplate.
  • 20/5/16: Leaving the WebhookURL field blank in Options will yield a URL of "/" instead of a panic.
  • 4/5/16: The URL to use for the webhook is changable in the Options struct.

Inspiration

Messenger takes design cues from:

Projects

This is a list of projects use messenger. If you would like to add your own, submit a Pull Request adding it below.

  • meme-maker by @paked: A bot which, given a photo and a caption, will create a macro meme.
  • drone-facebook by @appleboy: Drone.io plugin which sends Facebook notifications