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 16:22:17 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f929d42d6248f6f47e2f07d3dab3d55b5034ee7f
f929d42d
1 parent
31dfab14
Update app.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app.js
app.js
View file @
f929d42
...
...
@@ -89,7 +89,7 @@ async function handleEvent(event) {
client
.
getMessageContent
(
event
.
message
.
id
)
.
then
((
stream
)
=>
{
stream
.
on
(
'data'
,
(
chunk
)
=>
{
fs
.
writeFileSync
(
'/photo/1.png'
,
chunk
);
fs
.
writeFileSync
(
'
.
/photo/1.png'
,
chunk
);
});
});
...
...
@@ -106,7 +106,7 @@ async function handleEvent(event) {
'Content-Type'
:
'application/json'
,
'Ocp-Apim-Subscription-Key'
:
'979dc5d63344438fa4701c62feebb7dc'
},
body
:
fs
.
readFileSync
(
'/photo/1.png'
)
body
:
fs
.
readFileSync
(
'
.
/photo/1.png'
)
};
console
.
log
(
body
);
request
.
post
(
options
,
function
(
error
,
response
,
body
)
{
...
...
Please
register
or
login
to post a comment