由于 User-Agent 标头无效而拒绝请求时更正 HTTP 状态代码
我目前正在开发基于 HTTP 的 API。我们的使用条款要求用户发送适当的用户代理标头(例如“-”被视为无效)。现在我不太确定如果请求被拒绝,服务器应该响应哪个正确的 HTTP 状态。有什么建议吗?
I'm currently working on an HTTP based API. Our terms of use require the user to send an appropriate user-agent header (e.g. "-" is considered invalid). Now I'm not quite sure which would be the correct HTTP status the server should be responding with, if the request is rejected. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会选择 400 Bad Request 或 403 Forbidden
400 Bad Request or 403 Forbidden would be the two I'd pick