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-12-05 17:57:28 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
10eb592b7c2880af34029e78016fb4b27fd6020d
10eb592b
1 parent
5656bf16
Update app.js
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
app.js
app.js
View file @
10eb592
...
...
@@ -84,13 +84,15 @@ async function handleEvent(event) {
return
new
Promise
(
async
(
resolve
,
reject
)
=>
{
var
file
;
client
.
getMessageContent
(
event
.
message
.
id
)
.
then
(
async
(
stream
)
=>
{
await
client
.
getMessageContent
(
event
.
message
.
id
)
.
then
(
async
(
stream
)
=>
{
await
stream
.
on
(
'data'
,
(
chunk
)
=>
{
file
=
chunk
;
file
=
chunk
;
console
.
log
(
chunk
);
});
});
}
);
console
.
log
(
file
);
var
cheerio
=
require
(
'cheerio'
);
var
uriBase
=
'https://koreacentral.api.cognitive.microsoft.com/vision/v2.1/ocr'
;
...
...
Please
register
or
login
to post a comment