我想用Java配合Jersey写出一个可以用JSON格式支援客户端登入功能的后台
目前自己有写出东西来,并用Google的Postman当客户端传JSON格式的账号密码供后台判断
但始终没有反应,我在Postman的网页按F12找到了错误代码415 (Unsupported Media type)
我想是接收或回传时的格式问题吧,但想不到解决的办法,也在网络上搜寻了很多文章还是解决不了
希望各位高手可以帮帮忙,在这里附上我的程序码
@POST
@Path("/users/login")
@Consumes({Mediatype.APPLICATION_JSON)
@Produces({Mediatype.APPLICATION_JSON)
public String login(JSONObject is)throws JSONException {
String id = is.getString("ID");
String pwd = is.getString("password");
JSONObject reJson = new JSONObject();
reJson.put("re", "true");
JSONObject reJson2 = new JSONObject();
reJson2.put("re", "false");
if(id == "123" && pwd == "321"){
return reJson.toString;
}else{
return reJson2.toString;
}
}