DELETE redirect not supported [urllib.request]
未关闭
还没有人认领这个 Issue。
type-bug
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 35.9k
- PR 合并指标
- PR 指标待抓取
描述
Bug description:
Compare node.js:
> response = await fetch('http://www.xlog.ch/echo/delete?foo1=bar1&foo2=bar2',
... {method:'DELETE'}); response.url
'https://www.xlog.ch/echo/delete?foo1=bar1&foo2=bar2'
With CPython:
request = urllib.request.Request('http://www.xlog.ch/echo/delete?foo1=bar1&foo2=bar2', method='DELETE')
response = urllib.request.urlopen(request)
urllib.error.HTTPError: HTTP Error 302:
I believe node.js fetch() redirects, whereas CPython thinks
302 is an error, since the method is neither HEAD, GET or PUT.
But its probably not an error, all methods are allowed:
https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 urllib.request 开始,跟踪对于 HEAD、GET 和 PUT 以外的方法,HTTP 302 响应是如何处理的。将这一路径与文档说明的重定向行为以及提供的 DELETE 示例进行比较;当预期的 DELETE 重定向行为由回归测试覆盖,且不破坏现有的重定向处理时,即视为完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- networking
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 38/100