Update README.md

This commit is contained in:
Adhiraj Singh
2020-07-08 12:44:25 +05:30
parent b9df538764
commit 9907f54bcd

View File

@@ -172,12 +172,11 @@ To note:
## Sending Read Receipts ## Sending Read Receipts
``` ts ``` ts
client.sendReadReceipt(id, messageID) const id = '1234-123@g.us'
``` const messageID = 'AHASHH123123AHGA' // id of the message you want to read
await client.sendReadReceipt(id, messageID) // mark as read
Also, to mark a chat unread: await client.markChatUnread(id) // to mark chat as unread
``` ts
client.markChatUnread(id)
``` ```
`id` is in the same format as mentioned earlier. The message ID is the unique identifier of the message that you are marking as read. On a `WAMessage`, it can be accessed using ```messageID = message.key.id```. `id` is in the same format as mentioned earlier. The message ID is the unique identifier of the message that you are marking as read. On a `WAMessage`, it can be accessed using ```messageID = message.key.id```.
@@ -218,10 +217,8 @@ If you want to save & process some images, videos, documents or stickers you rec
const jid = '1234@s.whatsapp.net' // can also be a group const jid = '1234@s.whatsapp.net' // can also be a group
const response = await client.sendMessage (jid, 'hello!', MessageType.text) // send a message const response = await client.sendMessage (jid, 'hello!', MessageType.text) // send a message
await client.deleteMessage (jid, {id: response.messageID, remoteJid: jid, fromMe: true}) // will delete the sent message! await client.deleteMessage (jid, {id: response.messageID, remoteJid: jid, fromMe: true}) // will delete the sent message!
```
You can also archive a chat using: // You can also archive a chat using:
``` ts
await client.archiveChat(jid) await client.archiveChat(jid)
``` ```