如何使用 JAX-RS 设置和检查 Cookie?
我是RESTful API的菜鸟,我正在尝试构建一个登录服务,在其中我提供电子邮件和密码,如果验证成功 - 存储cookie。此外,我如何检查cookie(如果存储)?
如何实现这一点?
@Path("/login")
@POST
@Produces(MediaType.APPLICATION_JSON)
@Consumes({MediaType.APPLICATION_FORM_URLENCODED, MediaType.APPLICATION_JSON})
public Response Login(final String i_LoginDetails) throws JSONException {
final JSONObject obj = new JSONObject(i_LoginDetails);
try {
if (isValidUser(obj.getString("email"), obj.getString("password"))) {
// Set a cookie
} else {
// return error invalid-credentials message
}
} catch (Exception e) {
e.printStackTrace();
}
return Response.ok("TEST").build();
}
我如何检查饼干(如果设置)?