I am working with this library link and I am not able to manipulate the data return via JSON of the following format
[{"id":"1","nome":"XXX","cidade":"XXXXXXX"},{"id":"2","nome":"XXXX","cidade":"XXXXXXXXXX"}]
JsonObject json = new JsonObject();
Ion.with(context)
.load("http://example.com/post")
.setJsonObjectBody(json)
.asJsonObject()
.setCallback(new FutureCallback<JsonObject>() {
@Override
public void onCompleted(Exception e, JsonObject result) {
// COMO TRABALHAR ELES AQUI????
}
});