1

我有一个需要安全的游戏应用程序。我已经尝试安全地导入模块,它工作的应用程序现在需要登录,现在我遇到了另一个问题。我想从 REST 进行身份验证。我的意思是客户端如何请求我的应用程序进行身份验证?,我尝试过这样

public static Response logIn(){
    DataInputStream dis = new DataInputStream(request.body);
    String request;
    response.status = 400;
    try {
        while(null != ((request = dis.readLine()))){
            JSONObject jsonObject = new JSONObject(request);
            String username = jsonObject.getString("username");
            String password = jsonObject.getString("password");
            boolean authenticated = Security.authenticate(username, password);
            if(authenticated){
                response.status = 200;
                return response;
            }else{
                response.status = 400;
                return response;
            }
        }
    } catch (IOException | JSONException e) {
        e.printStackTrace();
    }
    return response;
}

但是当我用休息客户端测试它时,它出错了,它说服务器重定向太多。对不起我的英语不好,如果可能的话,我想要一个例子

4

1 回答 1

0

You can try one of ready decisions, for example play authenticate plugin or use this article

于 2013-10-14T08:08:56.717 回答