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, 1400👍, 1💬
Popular Posts:
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...
How to reinstall npm with a node version manager? I am getting permission errors with the current ve...
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...