Tools, FAQ, Tutorials:
'set-method' Policy Statement
How to use the "set-method" Policy Statement for an Azure API service operation?
✍: FYIcenter.com
The "set-method" Policy Statement can be used to modify the HTTP verb when Azure forwarding the client request to the backend Web service.
By default, Azure uses the save HTTP verb as client request received at the Azure portal. If you want to change the HTTP verb, you need to insert a "set-method" Policy Statement in the <inbound> block as shown below:
<inbound> <set-method>POST</set-method> </inbound>
If the above policy is used on a client request using the GET method:
GET https://fyicenter.azure-api.net/profiles HTTP/1.1
Azure will call the backend service with the POST method, assuming
POST http://dev.fyicenter.com/services/profiles HTTP/1.1
⇒ 'forward-request' Policy Statement
⇐ 'rewrite-uri' Policy Statement
2018-01-16, 1724🔥, 0💬
Popular Posts:
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...
How to use the "@(...)" expression in Azure API Policy? The "@(...)" expression in Azure API Policy ...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
How to use the "send-request" Policy statement to call an extra web service for an Azure API service...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...