Skip to content

Instantly share code, notes, and snippets.

@tagrudev
Created August 4, 2014 11:23
Show Gist options
  • Save tagrudev/96488bbef34a05ec3575 to your computer and use it in GitHub Desktop.
Save tagrudev/96488bbef34a05ec3575 to your computer and use it in GitHub Desktop.
Ion.with(mainActivity)
.load("GET", "http://url.com")
.addQuery("type", "something")
.addQuery("radius","50")
.asJsonObject()
.setCallback(new FutureCallback<JsonObject>() {
@Override
public void onCompleted(Exception e, JsonObject result) {
Log.d("TAG", result);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment