line-bot-sdk-go
のv8
を使用してLINE BotをGoで作成する
$ npm i -g vercel
$ vercel login
$ vercel --prod
$ go test ./...
- ユーザー情報取得
curl --location 'https://api.line.me/v2/bot/profile/[userId]' \
--header 'Authorization: Bearer [access token]'
- プッシュ通知
curl --location 'https://api.line.me/v2/bot/message/push' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer [access token]' \
--data '{
"to": "[userId]",
"notificationDisabled": false,
"messages": [
{
"type": "text",
"text": "Hello"
}
]
}'
MIT @o-ga09