카카오 챗봇 기본 API 작성
- NodeJs
- 2020. 3. 4. 01:36
- 코멘토 활용하기 위한 기초 API 작성, 카카오 챗봇 JSON API로 사용
- 로컬환경셋팅(해당 블로그 내용 참고) : https://codevkr.tistory.com/12
1) Nodejs 설치 (LTS 버전)
2) 프로젝트 경로 만들기
3) npm init / git, 라이센스 정보 등 작성
app.js 작성
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//express 모듈 로드
var express = require('express');
//http 모듈 불러온 후 http 변수에 저장
var http = require('http');
//express 객체 app 변수에 저장
var app = express();
//http://서버주소/keyboard /* 라우팅 처리 */
//전달할 데이터
var data = {
'type' : 'buttons',
'buttons' : ['과일', '채소', '정보']
};
});
//9090포트로 서버 실행
http.createServer(app).listen(9090,function(){
console.log('서버 실행 중..');
});
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
node app.js 실행
URL 결과 조회 : json 응답 확인
'NodeJs' 카테고리의 다른 글
forever (서버가 죽어도 계속 살아있기) (0) | 2020.03.04 |
---|