Parse.com 一个用户只有一个设备会话。 Android

Parse.com Only one device session for a user. Android

我目前正在构建一个后端有 Parse 的应用程序。我意识到用户可以在多个设备上登录他的帐户。有没有一种方法可以一次将其限制为一台设备?如果是这样,你能解释一下这个方法吗? 提前致谢。

您需要监控您的网络环境(例如网络服务)的应用程序。一旦有人登录,您必须断开连接到同一用户的其他设备。

您可以通过最后一次登录请求的IMEI进行分析,并向同一用户的其他设备发送命令以取消访问权限。

我来这里寻找解决方案,但没有找到。通过反复试验,我已经解决了。我是一名新手开发人员,不知道这是否是最佳做法,但它确实有效。当用户尝试登录时执行以下操作。

    public void login(View v) {
    //  Create string variables for data.
    String username = et_username.getText().toString().toLowerCase().trim();
    String password = et_password.getText().toString();

    //  If a user is already on this device, log them out.
    //  this will happen when the force log out happens, the device will 
    //  simply catch the invalid session, but still have that user data, just unavailable
    user = ParseUser.getCurrentUser();
    if (user != null)
        user.logOutInBackground();

    ParseUser.logInInBackground(username, password, new LogInCallback() {
        @Override
        public void done(ParseUser user, ParseException e) {
            final ParseQuery<ParseObject> query = new ParseQuery<>("_Session");
            query.include("user");
            query.whereEqualTo("user", ParseUser.getCurrentUser()); //  Only get sessions for the specific user.
            query.addAscendingOrder("createdAt");  //  Place them in chronological order, with the oldest at the top.

                query.countInBackground(new CountCallback() {
                    @Override
                    public void done(int count, ParseException e) {
                        if (count > 1) {
                            try {
                                query.getFirst().deleteInBackground();
                            } catch (ParseException e1) {
                                Toast.makeText(LoginActivity.this, e1.toString(), Toast.LENGTH_LONG).show();
                            }
                        }
                    }
                });

            if (user != null) {
                emailVerified = user.getBoolean("emailVerified");

                if (emailVerified) {
                    //  Update the database to track their log in.
                    user.put("loggedIn", true);
                    user.saveInBackground();
                    if (!deliquent) {
                        //  Launch the MainActivity.
                        Intent intent = new Intent(LoginActivity.this, MainActivity.class);
                        startActivity(intent);
                    }
                    else {
                        Intent intent = new Intent(LoginActivity.this, CardActivity.class);
                        startActivity(intent);
                    }
                }
                else {
                    Toast.makeText(LoginActivity.this, getResources().getString(R.string.verify), Toast.LENGTH_SHORT).show();
                }
            }
            else {
                Toast.makeText(LoginActivity.this, "From LoginActivity line:213\n" + e.toString(), Toast.LENGTH_SHORT).show();
            }
        }
    });

}