您好,为了实现 symfony2 基本 REST api 包,我已经安装了以下包。
- 用于 Oauth2.0 基本身份验证的 FosOauth 服务器捆绑包
- 用于创建 REST api 的 FosRest 包。
现在任何人都可以建议我如何为所有 REST API 调用响应创建通用原型。json格式,比如
{
"responseType" : "[FAILED|PASSED]",
"data" : ["RESPECTIVE DATA WILL COME HERE"],
"errorCode" : "if any ERROR comes we can set those respective code here",
"errorMessage": "respective error messages either in the string or array"
}
提前致谢 :)