When you send the request with Accept header and the api call failed due to authentication failure, by default WSO2 API Manager will return the application/xml as a response. However, If you want your Accept header to be honored in the authentication failure cases. In my sample, I have just introduced to handle JSON and default as XML.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<sequence name="_auth_failure_handler_" xmlns="http://ws.apache.org/ns/synapse"> | |
<switch source="$trp:Accept"> | |
<case regex="application/json"> | |
<property name="error_message_type" value="application/json"/> | |
</case> | |
<default> | |
<property name="error_message_type" value="application/xml"/> | |
</default> | |
</switch> | |
<sequence key="_build_"/> | |
</sequence> |