{"errcode":0,"errmsg":"ok","external_contact":{"external_userid":"woEKVwAA-p6oNkN1yEAwwrQy3OKpdg","name":"刘","type":2,"avatar":"https://wework.qpic.cn/wwpic/310205_4BtObJMYS9-BOG5_1683889/0","corp_name":"嘉美","corp_full_name":"有限公司","gender":1},"follow_user":[{"userid":"188104272","remark":"刘","description":"","createtime":168984433,"tags":[],"remark_mobiles":["157369323"],"add_way":2,"oper_userid":"180448272"}]} net.sf.json.JSONException: JSONObject["follow_user"] is not a JSONArray.
时间: 2023-07-30 17:12:28 浏览: 217
微信{"errcode":48001,"errmsg":"api unauthorized, hints: [ req_id: 1QoCla0699ns81 ]"}
这个错误是因为 JSON 对象中的 "follow_user" 键对应的值不是一个 JSON 数组,而是一个 JSON 对象。
根据你提供的 JSON 数据,"follow_user" 是一个键值对,其值是一个 JSON 对象,而不是一个数组。如果你期望该值是一个数组类型的数据,你需要检查数据源或者处理逻辑是否正确。
如果你确定 "follow_user" 的值可能是一个 JSON 对象或者可能为空,你可以使用 `optJSONObject` 方法来获取该值。这个方法会返回一个 JSON 对象,如果该值不是一个对象类型,则返回 null。
请检查你的数据源和处理逻辑,确认是否符合预期。如果还有其他问题,请随时提问。
阅读全文