Description
Connecting using the streaming API via web socket I am attempting to login to the server (no SSL) and am being rejected with “{“msg”:“result”,“id”:“0”,“error”:{“isClientSafe”:true,“error”:403,“reason”:“User not found”,“message”:“User not found [403]”,“errorType”:“Meteor.Error”}}”
Server Setup Information
Version of Rocket.Chat Server: 3.13.0
- Operating System: Centos 7
- Deployment Method: Dockercompose
- Number of Running Instances: 1
- DB Replicaset Oplog:
- NodeJS Version: v12.22.1
- MongoDB Version: 4.0.24
- Proxy: none
- Firewalls none
Any additional Information
Using node JS to form login JSON (client)
let ll = JSON.stringify({
"msg" : "method",
"method" : "login",
"id" : myapp.msgId.toString(),
"params" : [ {
"user" : {
"username" : configuration.RocketUsername
},
"password": {
"digest" : "hex(" + encryptedPassword + ")",
"algorithm" : "sha-256"
}
}
]
});