The LINE Messaging API SDK for Go makes it easy to develop bots using LINE Messaging API, and you can create a sample bot within minutes.
See the official API documentation for more information.
- English: https://developers.line.biz/en/docs/messaging-api/overview/
- Japanese: https://developers.line.biz/ja/docs/messaging-api/overview/
This library requires Go 1.10 or later.
$ go get github.com/line/line-bot-sdk-go/linebot
import (
"github.com/line/line-bot-sdk-go/linebot"
)
func main() {
bot, err := linebot.New("<channel secret>", "<channel access token>")
...
}
client := &http.Client{}
bot, err := linebot.New("<channel secret>", "<channel accsss token>", linebot.WithHTTPClient(client))
...
The LINE Messaging API uses the JSON data format.
ParseRequest()
will help you to parse the *http.Request
content and return a slice of Pointer point to Event Object.
events, err := bot.ParseRequest(req)
if err != nil {
// Do something when something bad happened.
}
The LINE Messaging API defines 7 types of event - EventTypeMessage
, EventTypeFollow
, EventTypeUnfollow
, EventTypeJoin
, EventTypeLeave
, EventTypePostback
, EventTypeBeacon
. You can check the event type by using event.Type
for _, event := range events {
if event.Type == linebot.EventTypeMessage {
// Do Something...
}
}
To send a message to a user, group, or room, you need either an ID
userID := event.Source.UserID
groupID := event.Source.GroupID
RoomID := event.Source.RoomID
or a reply token.
replyToken := event.ReplyToken
The LINE Messaging API provides various types of message. To create a message, use New<Type>Message()
.
leftBtn := linebot.NewMessageAction("left", "left clicked")
rightBtn := linebot.NewMessageAction("right", "right clicked")
template := linebot.NewConfirmTemplate("Hello World", leftBtn, rightBtn)
message := linebot.NewTemplateMessage("Sorry :(, please update your app.", template)
With an ID, you can send message using PushMessage()
var messages []linebot.SendingMessage
// append some message to messages
_, err := bot.PushMessage(ID, messages...).Do()
if err != nil {
// Do something when some bad happened
}
With a reply token, you can reply to messages using ReplyMessage()
var messages []linebot.SendingMessage
// append some message to messages
_, err := bot.ReplyMessage(replyToken, messages...).Do()
if err != nil {
// Do something when some bad happened
}
FAQ: https://developers.line.biz/en/faq/
Community Q&A: https://www.line-community.me/questions
News: https://developers.line.biz/en/news/
Twitter: @LINE_DEV
This project respects semantic versioning.
Please check CONTRIBUTING before making a contribution.
Copyright (C) 2016 LINE Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.