SugarCRM Web服务响应在iOS中返回null

时间:2015-01-27 11:12:14

标签: ios web-services sugarcrm

当我调用get_entry_list方法时,我的SugerCRM应用服务调用返回null,我的json请求就像这样

{
    "input_type" = JSON;
    method = "get_entry_list";
    "response_type" = JSON;
    "rest_data" = "{\n  \"deleted\" : 0,\n  \"session\" : \"a5rk9ej583533cggigrke3u186\",\n  \"link_name_to_fields_array\" : [\n\n  ],\n  \"order_by\" : \"\",\n  \"query\" : \"\",\n  \"offset\" : 0,\n  \"module_name\" : \"Accounts\",\n  \"max_results\" : 2,\n  \"select_fields\" : [\n\n  ]\n}";
} 

如果有任何错误,请告诉我。 谢谢。

1 个答案:

答案 0 :(得分:0)

我没有逃避双引号就取得了成功。 你可以尝试围绕rest_data的简单引用,如:

"rest_data" = '{\n  "deleted" ...

我已经使用模块登录进行了测试。 问候