Seongwook Jin

notify added

1 +// 모듈을 읽어 들입니다.
2 +const request = require('request');
3 +// 요청을 위한 상수를 선언합니다: TOKEN은 자신의 것을 입력해주세요.
4 +const TARGET_URL = 'https://notify-api.line.me/api/notify';
5 +const TOKEN = '///채워주세요///';
6 +// 요청합니다.
7 +request.post(
8 + {
9 + url: TARGET_URL,
10 + headers: {
11 + 'Authorization': `Bearer ${TOKEN}`
12 + },
13 + form: {
14 + message: '안녕하세요. LINE Notify 테스트입니다.',
15 + stickerPackageId: 1,
16 + stickerId: 1
17 + }
18 + },(error, response, body) => {
19 + console.log(body)
20 + });
This diff is collapsed. Click to expand it.
1 +{
2 + "name": "notify",
3 + "version": "1.0.0",
4 + "description": "",
5 + "main": "app.js",
6 + "scripts": {
7 + "test": "echo \"Error: no test specified\" && exit 1"
8 + },
9 + "author": "",
10 + "license": "ISC",
11 + "dependencies": {
12 + "request": "^2.88.2"
13 + }
14 +}