-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
如何通过插件修改http请求的body内容 #4
Comments
这是我的代码,目前是监听req.on('end')获取完整请求body,但不知道如何修改这个req body |
使用reqWrite 的 hook 修改 res.end(reqBody) 就行了,reqBody是你需要请求的内容 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
背景
test-server插件演示了如何修改response(内容经过base64编码)内容,其中用到了client=req.request(),然后req.pipe(client)
期望
如何修改request对象本身,比如我的请求body里的json字符串用PB序列化了,正常情况下无法通过UI页面工具修改内容发起请求,而我期望在composer里面编辑json,然后想通过插件动态地把json字符串序列化为PB后请求真实服务器。需要怎么做?
The text was updated successfully, but these errors were encountered: