标签: api azure azure-api-management
我使用了一个在邮递员中工作的令牌,当包含在邮件请求的表单数据主体中时。如何在策略中包含令牌?
答案 0 :(得分:1)
将令牌附加到入站标记内的请求正文解决了问题。
string temp = context.Request.Body.As<string>(preserveContent: true); temp = temp + "&token={{MyTokenName}}"; return temp;