Toggle navigation
Toggle navigation
This project
Loading...
Sign in
최지민
/
LINEBOT
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
최지민
2019-11-23 20:05:32 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4364f8d2edaa7b0e7e426705b867ad94e3007fdd
4364f8d2
1 parent
aef829bc
search_option3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
app.js
app.js
View file @
4364f8d
...
...
@@ -71,7 +71,7 @@ function handleEvent(event) {
else
if
(
event
.
message
.
text
.
substr
(
0
,
4
)
==
"!검색 "
){
return
new
Promise
(
function
(
resolve
,
reject
)
{
var
text_len
=
event
.
message
.
text
;
search_api_url
+=
'?query='
+
event
.
message
.
text
.
substr
(
4
,
text_len
-
4
)
+
'&display=1'
;
search_api_url
+=
'?query='
+
String
(
event
.
message
.
text
.
substr
(
4
,
text_len
-
4
)
)
+
'&display=1'
;
var
search_options
=
{
url
:
search_api_url
,
headers
:
{
'X-Naver-Client-Id'
:
client_id
,
'X-Naver-Client-Secret'
:
client_secret
}
...
...
Please
register
or
login
to post a comment