Home > database >  NodeJS open library with Cookies
NodeJS open library with Cookies

Time:07-05

Hey is there a way to open a Website with Cookies in NodeJs via the open library?

I've been looking for a solution to parse the Cookies like a HTTP header in the Option argument of the open library!

open(URL, {
    header: {
      secrets: 1234,
    },
    method: 'GET'
  });

CodePudding user response:

No.

That would require the browsers supported a command line API for setting cookies, and that open supported it.

They don't.

  • Related