在ejabberd上使用Smack创建新用户将引发XMPP异常:禁止(403)

Dev*_*ven 5 xmpp ejabberd smack

嗨,我正在研究ejabberd,并且对这项技术还很陌生。

我正在尝试使用以下代码在我的ejabberd服务器上添加用户:

  try {         
         conf.setSASLAuthenticationEnabled(true);               
         connection.connect();  
         Roster.setDefaultSubscriptionMode(Roster.SubscriptionMode.manual);
         Log.i("XMPPClient", "Connected to "
                                +connection.getHost());              
         createUser("tester","testerpass");   
    }   
    } catch (XMPPException e1) {
        Log.e("XMPPClient", e1.toString());
        xmppClient.setConnection(null);
    }

    public void createUser(String user, String pass) {      
            try {
                //Admin login
                connection.login(user, pass);
            } catch (XMPPException e) {
              e.printStackTrace();
            }    
Log.i("connection.isAuthenticated() : ",""+connection.isAuthenticated() );   
             if (connection.isAuthenticated()) {
              AccountManager manager = connection.getAccountManager();        
              try {  
                manager.createAccount(user, pass);
              } catch (XMPPException e) {
                Log.w("[create_user] Cannot create new user: XMPP Exception.", "0");
                e.printStackTrace();
              } catch (IllegalStateException e) {
                Log.w("[create_user] Cannot create new user: not logged in.", "0");
                e.printStackTrace();
              }
            }
          }
Run Code Online (Sandbox Code Playgroud)

它与服务器和管理员登录的连接是完美的,但是在创建新帐户时会出现403错误,即:

06-15 20:01:40.092: I/XMPPClient(1300):Connected to 68.178.255.136
06-15 20:01:41.952: I/connection.isAuthenticated() :(1300): true
06-15 20:01:42.562: W/[create_user] Cannot create new user: XMPP Exception.(1300): 0
06-15 20:01:42.562: W/System.err(1300): forbidden(403)
06-15 20:01:42.562: W/System.err(1300):     at org.jivesoftware.smack.AccountManager.createAccount(AccountManager.java:246)
Run Code Online (Sandbox Code Playgroud)

如果有人可以为此提出建议,我将非常感激。

Osa*_*ikh 5

转到 C:\Program Files (x86)\ejabberd-2.1.8\conf(在我的例子中)文件夹并使用 Notepad++ 打开 ejabberd.cfg 文件(使用它很容易编辑)。

在文件中进行以下更改:

%% Put this in the section ACCESS RULES
{access, register_from, [{allow, admin}]}.

%% Change mod_register so it contains the new access rule:

{mod_register, [
          {access_from, register_from},
           ...
                    ] ...
Run Code Online (Sandbox Code Playgroud)