Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkdai/linenotify
Template for LINE Notify service in Golang
https://github.com/kkdai/linenotify
golang line line-notify
Last synced: 4 days ago
JSON representation
Template for LINE Notify service in Golang
- Host: GitHub
- URL: https://github.com/kkdai/linenotify
- Owner: kkdai
- License: mit
- Created: 2018-09-14T08:05:31.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T08:17:19.000Z (2 months ago)
- Last Synced: 2024-09-10T10:54:48.793Z (2 months ago)
- Topics: golang, line, line-notify
- Language: Go
- Homepage:
- Size: 340 KB
- Stars: 24
- Watchers: 7
- Forks: 37
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LineNotify template : A simple Golang Line Notify Bot template
==============[![Join the chat at https://gitter.im/kkdai/linenotify](https://badges.gitter.im/kkdai/linenotify.svg)](https://gitter.im/kkdai/linenotify?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![GoDoc](https://godoc.org/github.com/kkdai/linenotify.svg?status.svg)](https://godoc.org/github.com/kkdai/linenotify) [![Build Status](https://travis-ci.org/kkdai/linenotify.svg?branch=master)](https://travis-ci.org/kkdai/linenotify.svg)
[![goreportcard.com](https://goreportcard.com/badge/github.com/kkdai/linenotify)](https://goreportcard.com/report/github.com/kkdai/linenotify)
![](img/linenotify.png)
This is a template to help you if you want to implement [Line Notify](https://notify-bot.line.me/zh_TW/). It help us follow:
- Authenication with Line Notify server
- Help you to access token from Line Notify server
- A notify entry point to notify Line Notify serverYou can just try it or fork this repo to developing your own Line Notify server in Go.
## Just want to try it?
- [Go to my test Line Notify site](https://linenotify-app.herokuapp.com/auth)
![](img/notify1.png)
- Click this button and remember to login your Line account for authenication this notify.
![](img/notify2.png)
- Select one on one notification, click "Agreed and Connected"
- It will help you to add friend with "Line Notify".![](img/notify3.png)
- Go to this link add arbitrary string after msg=xxxx ex: https://linenotify-app.herokuapp.com/notify?msg=test
![](img/notify4.png)
## Installation for developer
### 1. Got A Line Bot API devloper account
[Register your Line Notify Account](https://notify-bot.line.me/my/services/new)
- You need to fill all related info you need.
- For "Service Site" and "Callback URL", just fill arbitrary web site with "http://xxx.xxx.com"
- Remember you need "Client ID" and "Client Secret" for Heroku setup.![](img/dev1.png)
### 2. Deploy to your Heroku account
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
Remember your heroku ID.
### 3. Config your Heroku Variables
![](img/dev2.png)
Please config three variables as follow:
- `CallbackURL`: Callback URL which should be `https://YOUR_HEROKU_APPID.herokuapp.com/callback`
- `ClientID`: Client ID from Line Notify page
- `ClientSecret`: Client Secret from Line Notify page### 3. Fork this project and add git remote to heroku.
This is example of my heroku settup.
![](img/dev3.png)
In your fork repo, path
- `git remote add heroku https://git.heroku.com/YOUR_ID.git`
### 4. Update your related code.
- Update `govendor` setting.
- Install govendor
- `go get -u github.com/kardianos/govendor`
- Update root path
- `rm -Rf vendor`
- `govendor init`
### 5. Modify your code### 6. Push to Heroku
- `git push -u heroku HEAD`
## Further Work:
If you want to implement business Line Notify service, you will need implement followsing after this repo.
- Implement a database service to store all users' `token` and `code`.
- Because Heroku server will `force to shudown 6 hours per day`, you will need to implement a dedicate server to notify Line Notify service once the notification happen anytime.If you still have any questions, please file your issue and let me know.
## Reference
- [Line Notify Doc](https://notify-bot.line.me/doc/en/)
- [實作 Line Notify 通知服務 (1)](https://poychang.github.io/line-notify-1-basic/)