https://github.com/posquit0/node-kakao-alimtalk-bizmsg
API Client to send Kakao Alimtalk with BizMsg Provider
https://github.com/posquit0/node-kakao-alimtalk-bizmsg
alimtalk bizmsg kakao kakaotalk lms message mms notification provider push sms
Last synced: 4 months ago
JSON representation
API Client to send Kakao Alimtalk with BizMsg Provider
- Host: GitHub
- URL: https://github.com/posquit0/node-kakao-alimtalk-bizmsg
- Owner: posquit0
- License: mit
- Created: 2018-01-29T15:56:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-31T17:03:05.000Z (over 1 year ago)
- Last Synced: 2025-01-31T15:39:51.531Z (5 months ago)
- Topics: alimtalk, bizmsg, kakao, kakaotalk, lms, message, mms, notification, provider, push, sms
- Language: JavaScript
- Size: 43 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
:love_letter: Client for BizMsg Kakao Alimtalk API
**Kakao Alimtalk BizMsg** is the client library for [BizMsg](https://www.bizmsg.kr) Kakao Alimtalk API to send alimtalk message with phone-numbers, message, and template-id.
## Installation
```bash
# NPM
$ npm install --save node-kakao-alimtalk-bizmsg
# Yarn
$ yarn add node-kakao-alimtalk-bizmsg
```## Example
```node
const BizMsg = require('kakao-alimtalk-bizmsg');const client = new BizMsg({
userId: process.env.BIZMSG_USER_ID,
apiKey: process.env.BIZMSG_API_KEY
});const to = ['01012345678', '01056784321'];
const message = 'Hello World!';
const templateId = 'cp-example-123';// Send alimtalk message
client.send(to, message, templateId)
.then(console.log)
.catch(console.error);
```## API
To be updated
## Contributing
This project follows the [**Contributor Covenant**](http://contributor-covenant.org/version/1/4/) Code of Conduct.
#### Bug Reports & Feature Requests
Please use the [issue tracker](https://github.com/posquit0/node-kakao-alimtalk-bizmsg/issues) to report any bugs or ask feature requests.
## Self Promotion
Like node-kakao-alimtalk-bizmsg? Follow the repository on [GitHub](https://github.com/posquit0/node-kakao-alimtalk-bizmsg). And if you're feeling especially charitable, follow [posquit0](https://posquit0.com) on [GitHub](https://github.com/posquit0).
## Contact
If you have any questions, feel free to join me at [`#posquit0` on Freenode](irc://irc.freenode.net/posquit0) and ask away. Click [here](https://kiwiirc.com/client/irc.freenode.net/posquit0) to connect.
## License
Provided under the terms of the [MIT License](https://github.com/posquit0/node-kakao-alimtalk-bizmsg/blob/master/LICENSE).
Copyright © 2017, [Byungjin Park](http://www.posquit0.com).