mirror of
https://github.com/LemmyNet/lemmy-docs.git
synced 2024-11-01 10:09:54 +00:00
Add data field in websocket example
This commit is contained in:
parent
755b3abd91
commit
e3033634e3
1 changed files with 3 additions and 2 deletions
|
@ -164,7 +164,7 @@ To receive websocket messages, you must join a room / context. The four availabl
|
||||||
`websocat ws://127.0.0.1:8536/api/v2/ws -nt`
|
`websocat ws://127.0.0.1:8536/api/v2/ws -nt`
|
||||||
|
|
||||||
A simple test command:
|
A simple test command:
|
||||||
`{"op": "ListCategories"}`
|
`{"op": "ListCategories", "data": {}}`
|
||||||
|
|
||||||
### Testing with the WebSocket JavaScript API
|
### Testing with the WebSocket JavaScript API
|
||||||
|
|
||||||
|
@ -175,7 +175,8 @@ var ws = new WebSocket("ws://" + host + "/api/v2/ws");
|
||||||
ws.onopen = function () {
|
ws.onopen = function () {
|
||||||
console.log("Connection succeed!");
|
console.log("Connection succeed!");
|
||||||
ws.send(JSON.stringify({
|
ws.send(JSON.stringify({
|
||||||
op: "ListCategories"
|
op: "ListCategories",
|
||||||
|
data: {}
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue