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, 1669🔥, 1💬
Popular Posts:
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...
How to search for the first match of a regular expression using re.search()? The re.search() functio...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
Where to find tutorials on RSS specifications? I want to learn it to describe my API services. Here ...