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
[疑惑]:post请求添加参数@query 参数加在了请求的里面 请问怎么才能不加在参数里 加在path后面呢? 添加参数的位置: // 添加全局请求参数 .addParam("token", E2EAppClientContext.getToken())
请求的json: { "appData": { "programmeId": "753e006abd468f3cfb040ebb5abad891", "creator": { "accountFeature": { "featureValue": "sfxdfsf" } } }, "token": "eff47a0ce98f481c9e22212141a8707f" }
这个Token要加在path后面 为什么加在了请求体上面?
请求的javaBean中没有token这个字段
否
是
The text was updated successfully, but these errors were encountered:
现在是通过添加在path后面的方式 我觉得应该不是很正确! @nonnull @OverRide public String getApi() { return "ebsvr/live/programmes/check/face?token="+ E2EAppClientContext.getToken(); }
Sorry, something went wrong.
现在是通过添加在path后面的方式 我觉得应该不是很正确! @NonNull @Override public String getApi() { return "ebsvr/live/programmes/check/face?token="+ E2EAppClientContext.getToken(); }
现在是通过添加在path后面的方式 我觉得应该不是很正确!
@NonNull @Override public String getApi() { return "ebsvr/live/programmes/check/face?token="+ E2EAppClientContext.getToken(); }
post 请求的参数放在 url 上面,这个操作本身就是不正确的
好的 多谢 我们后台这这样搞的 暂时先这么处理吧!谢谢大佬回复
No branches or pull requests
问题描述【必填】
[疑惑]:post请求添加参数@query 参数加在了请求的里面 请问怎么才能不加在参数里 加在path后面呢?
添加参数的位置:
// 添加全局请求参数
.addParam("token", E2EAppClientContext.getToken())
请求的json:
{
"appData": {
"programmeId": "753e006abd468f3cfb040ebb5abad891",
"creator": {
"accountFeature": {
"featureValue": "sfxdfsf"
}
}
},
"token": "eff47a0ce98f481c9e22212141a8707f"
}
这个Token要加在path后面 为什么加在了请求体上面?
请求的javaBean中没有token这个字段
框架文档是否提及了该问题【必答】
否
是否已经查阅框架文档但还未能解决的【必答】
否
issue 列表中是否有人曾提过类似的问题【必答】
否
是否已经搜索过了 issue 列表但还未能解决的【必答】
是
The text was updated successfully, but these errors were encountered: