如您所知,当我们尝试将 Scrapy Splash 与 Crawlera 一起使用时,我们会使用此 lua 脚本:
function use_crawlera(splash)
-- Make sure you pass your Crawlera API key in the 'crawlera_user' arg.
-- Have a look at the file spiders/quotes-js.py to see how to do it.
-- Find your Crawlera credentials in https://app.scrapinghub.com/
local user = splash.args.crawlera_user
local host = 'proxy.crawlera.com'
local port = 8010
local session_header = 'X-Crawlera-Session'
local session_id = 'create'
splash:on_request(function (request)
request:set_header('X-Crawlera-Cookies', 'disable')
request:set_header(session_header, session_id)
request:set_proxy{host, port, username=user, password=''}
end)
splash:on_response_headers(function (response)
if type(response.headers[session_header]) ~= nil then
session_id = response.headers[session_header]
end
end)
end
function main(splash)
use_crawlera(splash)
splash:init_cookies(splash.args.cookies)
assert(splash:go{
splash.args.url,
headers=splash.args.headers,
http_method=splash.args.http_method,
})
assert(splash:wait(3))
return {
html = splash:html(),
cookies = splash:get_cookies(),
}
end
该lua脚本中有一个session_id
我非常需要的变量,但是我如何从Scrapy的响应中访问它?
我已经尝试过response.session_id
,或者response.headers['X-Crawlera-Session']
两者都不起作用。