Anuj-Panthri commited on
Commit
5409f3d
·
1 Parent(s): cd531a5

removed extra part from base64

Browse files
Files changed (1) hide show
  1. index.js +3 -2
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": "data:image/png;base64," + base64Image
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": "data:image/png;base64," + base64Image,
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
  }