We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
例行检查
问题描述 我使用 Postman 调用项目 API 发送 Post Json 请求,一切正常。 我使用 Quicker软件 您的指尖工具箱 - Quicker 的 http 模块发送则会报错,抓包发现是因为它的 Header 为:
Content-Type: application/json; charset=utf-8
而项目 API 校验采用完全匹配形式,所以就会报错。 复现步骤 以上述 header 在 postman 中模拟测试即可复现。
预期结果 能否将 API 的校验方式修改为【包含】?让项目更健壮?
The text was updated successfully, but these errors were encountered:
message-pusher/controller/message.go
Line 49 in ce8dd67
改为
contentType := c.Request.Header.Get("Content-Type") mimeType := strings.Split(contentType, ";")[0] if mimeType == "application/json" { //... }
Sorry, something went wrong.
No branches or pull requests
例行检查
问题描述
我使用 Postman 调用项目 API 发送 Post Json 请求,一切正常。
我使用 Quicker软件 您的指尖工具箱 - Quicker 的 http 模块发送则会报错,抓包发现是因为它的 Header 为:
Content-Type: application/json; charset=utf-8
而项目 API 校验采用完全匹配形式,所以就会报错。
复现步骤
以上述 header 在 postman 中模拟测试即可复现。
预期结果
能否将 API 的校验方式修改为【包含】?让项目更健壮?
The text was updated successfully, but these errors were encountered: