Last active
February 15, 2016 06:38
-
-
Save rnjailamba/7d21cc8fbcc7595c8f66 to your computer and use it in GitHub Desktop.
Form Params + Postman
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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