Toggle navigation
Toggle navigation
This project
Loading...
Sign in
신지원
/
LineMusicChatbot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
강수인
2018-12-07 00:45:27 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9f63dc5090c6da86bea6dc3002f23d89ef299503
9f63dc50
1 parent
7507d95b
파파고 api 설정
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
server.js
server.js
View file @
9f63dc5
...
...
@@ -12,8 +12,9 @@ var bodyParser = require('body-parser');
var
api_url
=
'https://openapi.naver.com/v1/papago/n2mt'
;
// Naver Auth Key
var
client_id
=
'86rKmat0DijccSxKa01P'
;
var
client_secret
=
'rMapNjB8DP'
;
//새로 발급받은 naver papago api id, pw 입력
var
client_id
=
'xZMx34y7uru1v8lywZ2d'
;
var
client_secret
=
'p6L7M7WsH9'
;
// Parse Application JSON
app
.
use
(
bodyParser
.
json
());
...
...
@@ -21,6 +22,9 @@ app.use(bodyParser.json());
// Parse Application/x-www-form-urlencoded
app
.
use
(
bodyParser
.
urlencoded
({
extended
:
true
}));
// Kakao Keyboard API
app
.
get
(
'/keyboard'
,
function
(
req
,
res
)
{
const
menu
=
{
...
...
Please
register
or
login
to post a comment