EC2 Default User

ready to code

Showing 10 changed files with 60 additions and 5 deletions
{
// IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
// 기존 특성에 대한 설명을 보려면 가리킵니다.
// 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/app.js",
"runtimeExecutable": "${env:HOME}/.nvm/versions/node/v16.15.0/bin/node"
}
]
}
\ No newline at end of file
......@@ -6,7 +6,7 @@ const HTTPS = require('https');
const app = express();
// 본인이 소유한 도메인으로 변경해야 함
// www 붙여야 함
const domain = "www.stagefive.tk"
const domain = "2019102197.osschatbot2022.ml"
const sslport = 23023;
app.get('/', function (req, res) {
......
......@@ -9,6 +9,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1"
"express": "^4.17.1",
"npm": "^8.11.0"
}
}
......
{
// IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
// 기존 특성에 대한 설명을 보려면 가리킵니다.
// 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/app.js",
"runtimeExecutable": "${env:HOME}/.nvm/versions/node/v16.15.0/bin/node"
}
]
}
\ No newline at end of file
var express = require('express');
const request = require('request');
const TARGET_URL = 'https://api.line.me/v2/bot/message/reply'
const TOKEN = '채널 토큰'
const TOKEN = 'A3e2T6lFz02I+kWl6BydLTnWCtxcsvioAr6g4FJMgvZyRcxzy+EdJntPO09XKEHOF08Pgg+L9rNEFKEYrhdhRNg5bmiGZdiaTJfp1DaY/uTVMjRU+hRM00OwvaWq4mxYt/GYLEDzrsQ3O8ezd9WbqQdB04t89/1O/w1cDnyilFU='
const PAPAGO_URL = 'https://openapi.naver.com/v1/papago/n2mt'
const PAPAGO_ID = '파파고 ID'
const PAPAGO_SECRET = '파파고 Client Secret'
const fs = require('fs');
const path = require('path');
const HTTPS = require('https');
const domain = "도메인 명"
const domain = "2019102197.osschatbot2022.ml"
const sslport = 23023;
const bodyParser = require('body-parser');
var app = express();
......
{
// IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
// 기존 특성에 대한 설명을 보려면 가리킵니다.
// 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/app.js",
"runtimeExecutable": "${env:HOME}/.nvm/versions/node/v16.15.0/bin/node"
}
]
}
\ No newline at end of file
......@@ -4,7 +4,7 @@ var app = express();
const fs = require('fs');
const path = require('path');
const HTTPS = require('https');
const domain = "도메인 변경 처리"
const domain = "2019102197.osschatbot2022.ml"
const sslport = 23023;
app.use(bodyParser.json());
......