Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. var rocketChatSocket = new WebSocket("ws://localhost:3000/websocket");
  2. var connectRequest = {
  3. "msg": "connect",
  4. "version": "1",
  5. "support": ["1", "pre2", "pre1"]
  6. }
  7. rocketChatSocket.send(JSON.stringify(connectRequest));
  8. var loginRequest = {
  9. "msg": "method",
  10. "method": "login",
  11. "id": "42",
  12. "params": [
  13. { "user" : "chuyenbka@gmail.com", "password" : "123456" }
  14. ]
  15. }
  16.  
  17. rocketChatSocket.send(JSON.stringify(loginRequest));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement