dreamhead / moco

Easy Setup Stub Server
MIT License
4.36k stars 1.08k forks source link

可以在Event中使用Post请求其他服务器时发送x-www-form-urlencoded类型的参数吗? #275

Open waitshang opened 4 years ago

waitshang commented 4 years ago

可以在Event中使用Post请求其他服务器时发送x-www-form-urlencoded类型的参数吗? image

dreamhead commented 4 years ago

What you need is post with HTTP header like this:Content-Type: application/x-www-form-urlencoded.

Refer to the document for event with headers.

waitshang commented 4 years ago

I see. Does the form value need to be urlencoded?

dreamhead commented 4 years ago

By default, Moco doesn't handle your specific value. You can encode form value and set it as content value.