I need to send the x-csrf-token along with the URL in a GET request. I am using request-promise nodejs package for this purpose, but I don't know how to do.
I need to do something like this:
return rp({
method: 'GET',
url: "https://alabbo.to/joiner?fid=5ba900635da0a&page=check",
CSRF: "Y5KLHznEcspsqDHgmy63UHvKZT8s48EuQ1bfv34n"
})
.then(function (html) {
}