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 15:42:31 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
bee66451416fd31005729b60dc22073ef00cf7da
bee66451
1 parent
a3442aa2
Update app.js
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app.js
app.js
View file @
bee6645
...
...
@@ -87,7 +87,7 @@ async function handleEvent(event) {
.
then
((
stream
)
=>
{
stream
.
on
(
'data'
,
(
chunk
)
=>
{
const
fs
=
require
(
'fs'
);
fs
.
writeFileSync
(
'
./photo/
image.png'
,
chunk
);
fs
.
writeFileSync
(
'image.png'
,
chunk
);
});
});
var
cheerio
=
require
(
'cheerio'
);
...
...
@@ -104,7 +104,7 @@ async function handleEvent(event) {
'Content-Type'
:
'application/json'
,
'Ocp-Apim-Subscription-Key'
:
'979dc5d63344438fa4701c62feebb7dc'
},
body
:
fs
.
readFileSync
(
'
./photo/
image.png'
)
body
:
fs
.
readFileSync
(
'image.png'
)
};
console
.
log
(
body
);
request
.
post
(
options
,
function
(
error
,
response
,
body
)
{
...
...
Please
register
or
login
to post a comment