我想在我的 web api 中收到一个包含我的方法的空格的长字符串
据我了解,我无法发送带有空格的参数,是否必须以某种方式对其进行编码?
编辑:
我的内容类型是:
Content-Type: application/x-www-form-urlencoded
我已将其更改为其他几种类型,但它们都不允许我接收带有 + 而不是空格的参数
我的帖子方法签名是
public HttpResponseMessage EditCommentForExtension(string did, string extention, string comment)