如何在 Azure api 管理中将令牌包含在策略中?

How to include token in policy in azure api management?

当包含在 post 请求的表单数据正文中时,我使用的令牌在 postman 中有效。如何将令牌包含在策略中?

将令牌附加到入站标记内的请求正文解决了问题。

        string temp = context.Request.Body.As<string>(preserveContent: true); 
        temp = temp + "&token={{MyTokenName}}";
        return temp;