public static List<InstagramComment> decodeCommentsFromJsonResponse(JSONObject jsonObject) {
   List<InstagramComment> comments = InstagramComment.fromJson(getDataJsonArray(jsonObject));
   return comments == null ? new ArrayList<InstagramComment>() : comments;
 }