Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김시환
/
emergency_room_ChatBot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
1
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
shin0112
2022-11-24 21:06:57 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2e7dc6e43df917eb06ce35a8cdc66059047ef7a7
2e7dc6e4
1 parent
0fc19c70
modify emergency_api.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
emergency_api.js
emergency_api.js
View file @
2e7dc6e
...
...
@@ -6,11 +6,14 @@ const convert = require("xml-js");
var
url
=
'http://apis.data.go.kr/B552657/ErmctInfoInqireService/getSrsillDissAceptncPosblInfoInqire'
;
var
queryParams
=
'?'
+
encodeURIComponent
(
'serviceKey'
)
+
'=52tXHgaW46YUpGn9k0r3IQrduIl6kBOl3Ta8Idra1%2BpPMYhL4qVCDu9itW8FVbDtMF4f9LAT9NJXEx7pvEJv%2FQ%3D%3D'
;
/* Service Key*/
queryParams
+=
'&'
+
encodeURIComponent
(
'STAGE1'
)
+
'='
+
'%EC%84%9C%EC%9A%B8%ED%8A%B9%EB%B3%84%EC%8B%9C'
;
/* encodeURIComponent('¼¿ïƯº°½Ã')*/
queryParams
+=
'&'
+
encodeURIComponent
(
'STAGE2'
)
+
'='
+
'%EA%B0%95%EB%82%A8%EA%B5%AC'
;
/* */
queryParams
+=
'&'
+
encodeURIComponent
(
'STAGE1'
)
+
'='
+
encodeURIComponent
(
'¼¿ïƯº°½Ã'
);
/* */
queryParams
+=
'&'
+
encodeURIComponent
(
'STAGE2'
)
+
'='
+
encodeURIComponent
(
'°³²±¸'
);
/* */
queryParams
+=
'&'
+
encodeURIComponent
(
'SM_TYPE'
)
+
'='
+
encodeURIComponent
(
''
);
/* */
queryParams
+=
'&'
+
encodeURIComponent
(
'pageNo'
)
+
'='
+
encodeURIComponent
(
'1'
);
/* */
queryParams
+=
'&'
+
encodeURIComponent
(
'numOfRows'
)
+
'='
+
encodeURIComponent
(
'10'
);
/* */
console
.
log
(
queryParams
);
request
({
url
:
url
+
queryParams
,
method
:
'GET'
...
...
Please
register
or
login
to post a comment