Skip to content

Instantly share code, notes, and snippets.

@akandratovich
Created July 31, 2013 15:09
Show Gist options
  • Save akandratovich/6122813 to your computer and use it in GitHub Desktop.
Save akandratovich/6122813 to your computer and use it in GitHub Desktop.
...
post(new Route("zuora-callout-callback") {
@Override
public Object handle(Request request, Response response) {
logger.info("GOT IT");
for (String v : request.queryParams()) {
logger.info(v + " " + request.queryParams(v));
}
logger.info(request.body());
return ok(null); // {"permission": [], "ucode": -1, "result": "ok", "message": "" }
}
});
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment