我正在开发一个Web API应用程序,并要求如果操作不成功,则返回错误代码,如401/403/500,以及错误消息,格式为{“error”:“Invalid Key。”} 。我通过调用CreateErrorResponse实现了它,如下所示
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval" >
<gradient
android:endColor="@color/dark"
android:gradientRadius="20dp"
android:startColor="@color/icons"
android:type="radial"
android:layout_width="match_parent"
android:layout_height="match_parent">
</gradient>
<size
android:height="100dp"
android:width="100dp"/>
</shape>
这将返回{“消息”:“无效密钥。”},但我想要“错误”而不是“消息”作为密钥。
如何在返回响应时将“消息”更改为“错误”