Я пытаюсь выполнить приведенный ниже скрипт Lua в своем всплывающем интерфейсе
function main(splash, args)
assert(splash:go(args.url))
splash.set_viewport_full()
assert(splash:wait(0.5))
local title=splash:evaljs('document.title')
return {
html = splash:html(),
png = splash.png(),
har = splash:har(),
}
end
для URL: https://github.com/
Я получаю следующую ошибку
"EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive:
, но для некоторого URL, такого как scrapinghub.com, он работает нормально.
Может кто-нибудь сказать мне, как решить эту проблему.