You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe I'm doing this wrong? Login returns ok result, the following call gives:
{ RequestError: The parameter "roomId" or "roomName" is required [error-roomid-param-not-provided]
at Request.clientRequest [as _callback] (/home/wesley/rocketchat-ddp-listener/node_modules/rocketchat/lib/net.js:146:38)
at Request.self.callback (/home/wesley/rocketchat-ddp-listener/node_modules/request/request.js:187:22)
at Request.emit (events.js:198:13)
at Request. (/home/wesley/rocketchat-ddp-listener/node_modules/request/request.js:1044:10)
at Request.emit (events.js:198:13)
at IncomingMessage. (/home/wesley/rocketchat-ddp-listener/node_modules/request/request.js:965:12)
at IncomingMessage.emit (events.js:203:15)
at endReadableNT (_stream_readable.js:1145:12)
at process._tickCallback (internal/process/next_tick.js:63:19) name: 'RequestError', statusCode: 400 }
Placing the channel.history call outside of the login function callback gives me a not authenticated error as well.
The text was updated successfully, but these errors were encountered:
rocketChatClient.authentication.login('username', 'password', function(err, body) { if(err) console.log(err); else console.log(body); //BAD REQUEST rocketChatClient.channels.history('roomIdNumber', {}, function(err, body) { if(err) console.log(err); else console.log(body); }); });
Maybe I'm doing this wrong? Login returns ok result, the following call gives:
{ RequestError: The parameter "roomId" or "roomName" is required [error-roomid-param-not-provided]
at Request.clientRequest [as _callback] (/home/wesley/rocketchat-ddp-listener/node_modules/rocketchat/lib/net.js:146:38)
at Request.self.callback (/home/wesley/rocketchat-ddp-listener/node_modules/request/request.js:187:22)
at Request.emit (events.js:198:13)
at Request. (/home/wesley/rocketchat-ddp-listener/node_modules/request/request.js:1044:10)
at Request.emit (events.js:198:13)
at IncomingMessage. (/home/wesley/rocketchat-ddp-listener/node_modules/request/request.js:965:12)
at IncomingMessage.emit (events.js:203:15)
at endReadableNT (_stream_readable.js:1145:12)
at process._tickCallback (internal/process/next_tick.js:63:19) name: 'RequestError', statusCode: 400 }
Placing the channel.history call outside of the login function callback gives me a not authenticated error as well.
The text was updated successfully, but these errors were encountered: