I want introduce two String params (type and content) in the method "createPost".
I am using this line:
curl -i -u pepe:pepe -d 'type=Link&content=www' --header "Content-Type: application/json" http://localhost:8080/web-0.0.1-SNAPSHOT/api/user/post
But... that line introduces "type=Link&content=www" in the first parameter and leaves the second empty.
The method is this:
@POST
@Path("/post")
@Consumes(MediaType.APPLICATION_JSON)
public Response createPost(@FormParam("type") String type, @FormParam("content") String content) {
postEJB.createPostUserRest(type, content);
URI userURI = uriInfo.getAbsolutePathBuilder().build();
return Response.created(userURI).build();
}
How could I enter "Link" in the first and "www" in the second?
Many thanks to all and sorry for my poor English.