Python 刮屑飞溅错误400:“刮屑飞溅错误”;说明“说明”:&引用;缺少必需的参数:url";

Python 刮屑飞溅错误400:“刮屑飞溅错误”;说明“说明”:&引用;缺少必需的参数:url";,python,error-handling,scrapy,scrapy-splash,Python,Error Handling,Scrapy,Scrapy Splash,我在代码中使用scrapy splash生成javascript html代码 splash把这个render.html还给了我 { "error": 400, "type": "BadOption", "description": "Incorrect HTTP API arguments", "info": { "type": "argument_required", "argument": "url", "de

我在代码中使用scrapy splash生成javascript html代码

splash把这个render.html还给了我

{
    "error": 400,
    "type": "BadOption",
    "description": "Incorrect HTTP API arguments",
    "info": {
        "type": "argument_required",
        "argument": "url",
        "description": "Required argument is missing: url"
    }
}
我无法用javascript生成的html获得响应。 这是我的蜘蛛

class ThespiderSpider(scrapy.Spider):
    name = 'thespider'
    #allowed_domains = ['https://www.empresia.es/empresa/repsol/']
    start_urls = ['https://www.empresia.es/empresa/repsol/']

    def start_requests(self):
        yield scrapy.Request( 'http://example.com', self.fake_start_requests )

    def fake_start_requests(self, response):
        for url in self.start_urls:
            yield SplashRequest( url, self.parse,
                                 args={'wait': 1.5, 'http_method': 'POST'},
                                 endpoint='render.html'
                                 )

    def parse(self, response):
        open_in_browser(response)
        title = response.css("title").extract()
        # har = response.data["har"]["log"]["pages"]
        headers = response.headers.get('Content-Type')
        names = response.css('.fa-user-circle-o+ a::text').extract()
        yield {
            'title': title,
            #'har': har,
            'headers': headers,
            'names': names,
            'length': len(names)
        }
这是我的设置.py

USER_AGENT = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'

# Obey robots.txt rules
ROBOTSTXT_OBEY = True

# Splash Settings
DOWNLOADER_MIDDLEWARES = {
    # Engine side
    'scrapy_splash.SplashCookiesMiddleware': 723,
    'scrapy_splash.SplashMiddleware': 725,
    'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware': 810,
    # Downloader side
}

SPIDER_MIDDLEWARES = {
    'scrapy_splash.SplashDeduplicateArgsMiddleware': 100,
}
SPLASH_URL = 'http://127.0.0.1:8050/'
# SPLASH_URL = 'http://192.168.59.103:8050/'
DUPEFILTER_CLASS = 'scrapy_splash.SplashAwareDupeFilter'
HTTPCACHE_STORAGE = 'scrapy_splash.SplashAwareFSCacheStorage'

谢谢您的帮助。

args
参数中提供
url
参数,它将正常工作

yield SplashRequest(self.parse,
                     args={'url': url, 'wait': 1.5, 'http_method': 'POST'},
                     endpoint='render.html'
                     )

看起来您正在与之交互的API没有得到预期的结果。你有API的文档或源代码吗?这是API的文档-我似乎不知道我错过了什么。嗨,我也遇到了同样的错误,你找到了解决方法吗?