Tools, FAQ, Tutorials:
'set-status' Policy Statement
How to use the "set-status" Policy statement to modify the response status for an Azure API service operation?
✍: FYIcenter.com
The "set-status" Policy Statement allows you to change the status code of the response.
For example, the following outbound policy changes the status code of the response to 401:
<outbound>
<set-status code="401" reason="Unauthorized" />
</outbound>
2018-01-13, ∼1837🔥, 0💬
Popular Posts:
How To Truncate an Array in PHP? If you want to remove a chunk of values from an array, you can use ...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example ...