use dict instead of makePayload
the makePayload method does not exist in the source, should put a dict instead
This commit is contained in:
Родитель
7064a4726c
Коммит
129c0a11ef
|
@ -37,7 +37,9 @@ From there, the following code can be executed in any environment:
|
|||
const pc = new PingCentre("some_topic_foo", "some_cient_id_123");
|
||||
|
||||
// create the payload
|
||||
const payload = makePayload();
|
||||
const payload = {
|
||||
"event_type": "ping_session"
|
||||
};
|
||||
|
||||
// send the payload asynchronously
|
||||
pc.sendPing(payload);
|
||||
|
|
Загрузка…
Ссылка в новой задаче