Tools, FAQ, Tutorials:
Policy to Echo the Request Body Only
How to write a policy to echo the request body only?
✍: FYIcenter.com
Here is a policy that echoes the request body only:
<!-- Echo-Policy.xml
Copyright (c) FYIcenter.com
-->
<policies>
<inbound>
</inbound>
<backend>
</backend>
<outbound>
<return-response>
<set-status code="200" reason="Ok"/>
<set-body>@(context.Request.Body.As<string>())</set-body>
</return-response>
</outbound>
<on-error>
</on-error>
</policies>
If you specify this policy to your API operation, the client request will not be forwarded to any backend services.
Azure will return the request body as the response body with a status code of 200.
2017-10-23, ∼2106🔥, 0💬
Popular Posts:
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you t...
What Happens If One Row Has Missing Columns? What happens if one row has missing columns? Most brows...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...