Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     public String requestIon(Context context, String url, String method, Object object) throws ExecutionException, InterruptedException {
  2.         Builders.Any.B b = Ion.with(context).load(method, url);
  3.         if (object != null) {
  4.             b.setJsonPojoBody(object);
  5.         }
  6.         return b.asString().get();
  7.     }