My JSONObject:
JSONObject callback = {"message": "message here", "response": "response here"}
I want get the response here from json's respone string. I've tried the following:
JSONObject response = callback.getJSONObject("response");
String message = next.getString("response");
I get the errot like String and JSONObjet conversion problems.