您好,我想发出一个get请求,并有一个包含
的URL。url = "http://example.com/tags/feature%252Fexample/site/"
但是,如果我这样做,它会将URL更改为斜杠并产生错误。
requests.get(url)
equests.exceptions.HTTPError: 400 Client Error: Bad Request for url:
http://example.com/tags/feature/example/site/
有没有一种方法可以在没有/
的情况下保持url的状态?
我发现了这个问题,但反之亦然。
How to prevent python requests from percent encoding my URLs?,并且无法在文档中找到选项。
谢谢。