I can’t for the life of me figure out how to successfully scrape a website where I need to login in order to access.
In my browser there’s 4 request cookies (by inspecting an arbitrary GET request)
{
“Request Cookies”: {
“xf_csrf”: “”,
“xf_logged_in”: “”,
“xf_session”: “”,
“xf_user”: “”
}
}
Which I assume I need to pass to HTTP.jl in some way.
I’ve tried various formats like passing a Dict() with the cookies, but always gets redirected to the login page.
Anyeone have any tips? I presume this is on the stupid side of questions asked in this forum, but I’ve spent like 2 hours now to no avail.