0
 JSONObject getobj = new JSONObject();

        postobj.put("url", String.format("/user"));

        Log.d("Get MEthod", getobj.toString() + ">>>>>>>>>>>>>>>>>>>>Get Message " + socket.connected());

        Log.d(TAG, " the meessage url " + getobj.toString());

        socket.emit("get",getobj, new Ack() {
            @Override
            public void call(Object... args) {

                JSONObject obj = (JSONObject) args[0];

                Log.d("GET CHAT MEESSAGE ", obj.toString() + ">>>>>>>>>>>>>>>>>>>> with in call method Get Message " + socket.connected());

            }
        });

/我得到了贝娄回应\

   {
   "body": {
      "err": "No Authorization header was found"
     },
   "headers": {

   },
   "statusCode": 401
  }
4

1 回答 1

1

这就是我为 Socket 连接添加授权令牌的方式,希望这会有所帮助

IO.Options options = new IO.Options(); 
options.forceNew = true;                        
options.reconnectionAttempts = Integer.MAX_VALUE;                    
options.timeout = 10000;    
options.query = "token=" + "your_authorization_code";
于 2017-06-21T12:40:43.870 回答