随后是蝗虫极限数重定向

时间:2018-03-05 22:14:29

标签: python redirect python-requests locust

我正在玩Locust,我需要限制重定向的数量。在我的情况下,URL有4个重定向(302,303),所以我尝试使用:

    session = requests.Session()
    session.max_redirects = 2
    try:
        response = self.client.post(self.url,
                                    headers=headers,
                                    name='name',
                                    params=params,
                                    data=data)
        for i in response.history:
            print(i.url)
    except Exception as e:
        logging.info('Error on get_request_url request: %s', e)
        sys.exit(1)

但这并不限制重定向,任何想法?

0 个答案:

没有答案