Showing
1 changed file
with
1 additions
and
0 deletions
... | @@ -99,6 +99,7 @@ async function handleEvent(event) { | ... | @@ -99,6 +99,7 @@ async function handleEvent(event) { |
99 | request.post(options, function (error, response, body) { | 99 | request.post(options, function (error, response, body) { |
100 | let jsonResponse = JSON.stringify(JSON.parse(body), null, ' '); | 100 | let jsonResponse = JSON.stringify(JSON.parse(body), null, ' '); |
101 | jsonResponse=jsonResponse.toString() | 101 | jsonResponse=jsonResponse.toString() |
102 | + console.log(jsonResponse); | ||
102 | text=''; | 103 | text=''; |
103 | while(jsonResponse.indexOf('text')!=-1) | 104 | while(jsonResponse.indexOf('text')!=-1) |
104 | { | 105 | { | ... | ... |
-
Please register or login to post a comment