Skip to content

Instantly share code, notes, and snippets.

@rnjailamba
Last active February 15, 2016 06:38
Show Gist options
  • Save rnjailamba/7d21cc8fbcc7595c8f66 to your computer and use it in GitHub Desktop.
Save rnjailamba/7d21cc8fbcc7595c8f66 to your computer and use it in GitHub Desktop.
Form Params + Postman
@POST
@Path("sendappnotification")
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public static String sendSMS(@FormParam("order_id") String order_id,
@FormParam("template") String template,
@FormParam("appNotifData") String notif_json) {
}
reference - http://stackoverflow.com/questions/27957649/resteasy-formparam-returns-always-null
reference - http://postimg.org/image/iwbrdbilz/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment