Tools, FAQ, Tutorials:
The Default Policy
What is the default policy for an Azure API operation?
✍: FYIcenter.com
The default policy for an Azure API operation is the following:
<!-- Default-Policy.xml
Copyright (c) FYIcenter.com
-->
<policies>
<inbound>
</inbound>
<backend>
<forward-request />
</backend>
<outbound>
</outbound>
<on-error>
</on-error>
</policies>
If you specify this policy to your API operation, the client request will be forwarded as is to the backend service.
The only thing changed by the Azure is that the public base URL is replaced by the backend base URL.
2023-03-27, ∼2147🔥, 1💬
Popular Posts:
How to add request URL Template Parameters to my Azure API operation 2017 version to make it more us...
How to add request body examples to my Azure API operation to make it more user friendly? If you hav...
What is Azure API Management Developer Portal Admin? The Developer Portal Admin is an Azure Web port...
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...