Spaces:
Sleeping
Sleeping
Commit
·
5409f3d
1
Parent(s):
cd531a5
removed extra part from base64
Browse files
index.js
CHANGED
@@ -98,6 +98,7 @@ const getScreenshot = async (url, headers = null) => {
|
|
98 |
|
99 |
const browser = await initBrowser;
|
100 |
var page = await browser.newPage();
|
|
|
101 |
|
102 |
if (headers) {
|
103 |
// console.log("headers",headers);
|
@@ -147,7 +148,7 @@ app.get("/testscreenshot", async (req, res) => {
|
|
147 |
res.type("json");
|
148 |
return res.send(JSON.stringify({
|
149 |
// "html":html,
|
150 |
-
"screenshot":
|
151 |
}));
|
152 |
})
|
153 |
app.post("/html", async (req, res) => {
|
@@ -187,7 +188,7 @@ app.post("/screenshot", async (req, res) => {
|
|
187 |
const base64Image = await image.toString('base64');
|
188 |
|
189 |
return res.type("json").send(JSON.stringify({
|
190 |
-
"base64":
|
191 |
"html":html,
|
192 |
}));
|
193 |
}
|
|
|
98 |
|
99 |
const browser = await initBrowser;
|
100 |
var page = await browser.newPage();
|
101 |
+
page = await addRequestFilter(page);
|
102 |
|
103 |
if (headers) {
|
104 |
// console.log("headers",headers);
|
|
|
148 |
res.type("json");
|
149 |
return res.send(JSON.stringify({
|
150 |
// "html":html,
|
151 |
+
"screenshot": base64Image
|
152 |
}));
|
153 |
})
|
154 |
app.post("/html", async (req, res) => {
|
|
|
188 |
const base64Image = await image.toString('base64');
|
189 |
|
190 |
return res.type("json").send(JSON.stringify({
|
191 |
+
"base64": base64Image,
|
192 |
"html":html,
|
193 |
}));
|
194 |
}
|