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, 1761🔥, 1💬
Popular Posts:
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...