我是使用Refit的新手。我现在使用 Refit 来调用需要 xml 作为输入的 REST Api。这可行,但似乎 Refit 会自动添加众所周知的 xml 前导码来描述编码。
我想发送没有前导的 xml 元素(根据目标系统的要求)。我该怎么做呢?这是我在启动类中的代码:
var settings = new RefitSettings
{
ContentSerializer = new XmlContentSerializer()
};
services.AddRefitClient<IItemApi>(settings)
.ConfigureHttpClient(c => c.BaseAddress = new Uri("http://127.0.0.1:5000"));
这是我的数据类和刚刚使用的接口
public class PayLoad
{
public string A { get; set; }
public string B { get; set; }
}
public interface IItemApi
{
[Post("/target/{id}")]
Task<ApiResponse<string>> PostItemAsync(string id, [Body] PayLoad item,
CancellationToken cancellationToken = default);
}
下面是一个 post call 的例子:
var result = itemApi.PostItemAsync("X",new PayLoad
{
A = "A",
B = "B"
});
这是原始请求:
POST http://127.0.0.1:5000/target/X HTTP/1.1
Content-Type: application/xml; charset=utf-8
Content-Length: 76
Host: 127.0.0.1:5000
<?xml version="1.0" encoding="utf-8"?><PayLoad><A>A</A><B>B</B></PayLoad>
如何以这种方式更改我的代码这部分
<?xml version="1.0" encoding="utf-8"?>
不在请求中了吗?