【发布时间】:2021-09-20 06:27:24
【问题描述】:
我想以这种方式使用 set-body 编辑出站负载:
{“链接”:“http://localhost:7071/api”} 到 {"link":""}
我试过了,但出站没有变化:
JObject inBody = context.Response.Body.As<JObject>();
string str = inBody.ToString();
var item = JObject.Parse("{ 'link': 'http://localhost:7071/api}");
item["link"] = "https://randomlink/269";
return str;
【问题讨论】:
-
请澄清您的具体问题或提供其他详细信息以准确突出您的需求。正如目前所写的那样,很难准确地说出你在问什么。
标签: azure azure-api-management