Esta biblioteca foi originalmente um projeto para CS-2362 na Universidade Ashoka e não é de forma alguma afiliada ou endossada pelo WhatsApp. Use a seu critério. Não envie spam para as pessoas com isso. Desencorajamos qualquer utilização de stalkerware, mensagens em massa ou automatizadas.
Baileys e seus mantenedores não podem ser responsabilizados pelo uso indevido deste aplicativo, conforme indicado na licença do MIT. Os mantenedores do Baileys não toleram de forma alguma o uso deste aplicativo em práticas que violem os Termos de Serviço do WhatsApp. Os mantenedores deste aplicativo apelam à responsabilidade pessoal de seus usuários para utilizá-lo de maneira justa, conforme se destina a ser utilizado.
O Baileys não exige que o Selenium ou qualquer outro navegador faça interface com o WhatsApp Web, ele faz isso diretamente usando um WebSocket . Não executar o Selenium ou o Chromimum economiza meio giga de memória RAM: / Baileys suporta a interação com as versões para vários dispositivos e web do WhatsApp. Obrigado a @pokearaujo por escrever suas observações sobre o funcionamento do WhatsApp Multi-Device. Além disso, obrigado a @Sigalor por escrever suas observações sobre o funcionamento do WhatsApp Web e obrigado a @Rhymen pela implementação em Go .
O repositório original teve que ser removido pelo autor original - agora continuamos o desenvolvimento neste repositório aqui. Este é o único repositório oficial e é mantido pela comunidade. Junte-se ao Discord aqui
Confira e execute example.ts para ver um exemplo de uso da biblioteca. O script cobre os casos de uso mais comuns. Para executar o script de exemplo, baixe ou clone o repositório e digite o seguinte em um terminal:
cd path/to/Baileys
yarn
yarn example
Use a versão estável:
yarn add @whiskeysockets/baileys
Use a versão Edge (sem garantia de estabilidade, mas correções + recursos mais recentes)
yarn add github:WhiskeySockets/Baileys
Em seguida, importe seu código usando:
import makeWASocket from '@whiskeysockets/baileys'
PENDÊNCIA
O WhatsApp fornece uma API para vários dispositivos que permite que o Baileys seja autenticado como um segundo cliente do WhatsApp, digitalizando um código QR com o WhatsApp no seu telefone.
import makeWASocket , { DisconnectReason } from '@whiskeysockets/baileys'
import { Boom } from '@hapi/boom'
async function connectToWhatsApp ( ) {
const sock = makeWASocket ( {
// can provide additional config here
printQRInTerminal : true
} )
sock . ev . on ( 'connection.update' , ( update ) => {
const { connection , lastDisconnect } = update
if ( connection === 'close' ) {
const shouldReconnect = ( lastDisconnect . error as Boom ) ?. output ?. statusCode !== DisconnectReason . loggedOut
console . log ( 'connection closed due to ' , lastDisconnect . error , ', reconnecting ' , shouldReconnect )
// reconnect if not logged out
if ( shouldReconnect ) {
connectToWhatsApp ( )
}
} else if ( connection === 'open' ) {
console . log ( 'opened connection' )
}
} )
sock . ev . on ( 'messages.upsert' , m => {
console . log ( JSON . stringify ( m , undefined , 2 ) )
console . log ( 'replying to' , m . messages [ 0 ] . key . remoteJid )
await sock . sendMessage ( m . messages [ 0 ] . key . remoteJid ! , { text : 'Hello there!' } )
} )
}
// run in main file
connectToWhatsApp ( )
Se a conexão for bem sucedida, você verá um código QR impresso na tela do seu terminal, escaneie-o com o WhatsApp no seu telefone e você estará logado!
Você pode configurar a conexão passando um objeto SocketConfig
.
Toda a estrutura SocketConfig
é mencionada aqui com valores padrão:
type SocketConfig = {
/** the WS url to connect to WA */
waWebSocketUrl : string | URL
/** Fails the connection if the socket times out in this interval */
connectTimeoutMs : number
/** Default timeout for queries, undefined for no timeout */
defaultQueryTimeoutMs : number | undefined
/** ping-pong interval for WS connection */
keepAliveIntervalMs : number
/** proxy agent */
agent ?: Agent
/** pino logger */
logger : Logger
/** version to connect with */
version : WAVersion
/** override browser config */
browser : WABrowserDescription
/** agent used for fetch requests -- uploading/downloading media */
fetchAgent ?: Agent
/** should the QR be printed in the terminal */
printQRInTerminal : boolean
/** should events be emitted for actions done by this socket connection */
emitOwnEvents : boolean
/** provide a cache to store media, so does not have to be re-uploaded */
mediaCache ?: NodeCache
/** custom upload hosts to upload media to */
customUploadHosts : MediaConnInfo [ 'hosts' ]
/** time to wait between sending new retry requests */
retryRequestDelayMs : number
/** max msg retry count */
maxMsgRetryCount : number
/** time to wait for the generation of the next QR in ms */
qrTimeout ?: number ;
/** provide an auth state object to maintain the auth state */
auth : AuthenticationState
/** manage history processing with this control; by default will sync up everything */
shouldSyncHistoryMessage : ( msg : proto . Message . IHistorySyncNotification ) => boolean
/** transaction capability options for SignalKeyStore */
transactionOpts : TransactionCapabilityOptions
/** provide a cache to store a user's device list */
userDevicesCache ?: NodeCache
/** marks the client as online whenever the socket successfully connects */
markOnlineOnConnect : boolean
/**
* map to store the retry counts for failed messages;
* used to determine whether to retry a message or not */
msgRetryCounterMap ?: MessageRetryMap
/** width for link preview images */
linkPreviewImageThumbnailWidth : number
/** Should Baileys ask the phone for full history, will be received async */
syncFullHistory : boolean
/** Should baileys fire init queries automatically, default true */
fireInitQueries : boolean
/**
* generate a high quality link preview,
* entails uploading the jpegThumbnail to WA
* */
generateHighQualityLinkPreview : boolean
/** options for axios */
options : AxiosRequestConfig < any >
/**
* fetch a message from your store
* implement this so that messages failed to send (solves the "this message can take a while" issue) can be retried
* */
getMessage : ( key : proto . IMessageKey ) => Promise < proto . IMessage | undefined >
}
const conn = makeWASocket ( {
... otherOpts ,
// can use Windows, Ubuntu here too
browser : Browsers . macOS ( 'Desktop' ) ,
syncFullHistory : true
} )
Obviamente, você não quer ficar lendo o código QR toda vez que quiser se conectar.
Então, você pode carregar as credenciais para fazer login novamente:
import makeWASocket , { BufferJSON , useMultiFileAuthState } from '@whiskeysockets/baileys'
import * as fs from 'fs'
// utility function to help save the auth state in a single folder
// this function serves as a good guide to help write auth & key states for SQL/no-SQL databases, which I would recommend in any production grade system
const { state , saveCreds } = await useMultiFileAuthState ( 'auth_info_baileys' )
// will use the given state to connect
// so if valid credentials are available -- it'll connect without QR
const conn = makeWASocket ( { auth : state } )
// this will be called as soon as the credentials are updated
conn . ev . on ( 'creds.update' , saveCreds )
Nota: Quando uma mensagem é recebida/enviada, devido à necessidade de atualização de sessões de sinal, as chaves de autenticação ( authState.keys
) serão atualizadas. Sempre que isso acontecer, você deve salvar as chaves atualizadas ( authState.keys.set()
é chamado). Não fazer isso impedirá que suas mensagens cheguem ao destinatário e causará outras consequências inesperadas. A função useMultiFileAuthState
cuida disso automaticamente, mas para qualquer outra implementação séria - você precisará ter muito cuidado com o gerenciamento do estado chave.
Baileys agora dispara o evento connection.update
para informar que algo foi atualizado na conexão. Esses dados possuem a seguinte estrutura:
type ConnectionState = {
/** connection is now open, connecting or closed */
connection : WAConnectionState
/** the error that caused the connection to close */
lastDisconnect ?: {
error : Error
date : Date
}
/** is this a new login */
isNewLogin ?: boolean
/** the current QR code */
qr ?: string
/** has the device received all pending notifications while it was offline */
receivedPendingNotifications ?: boolean
}
Nota: isso também oferece atualizações para o QR
Baileys usa a sintaxe EventEmitter para eventos. Eles estão todos bem digitados, então você não deverá ter problemas com um editor Intellisense como o VS Code.
Os eventos são digitados conforme mencionado aqui:
export type BaileysEventMap = {
/** connection state has been updated -- WS closed, opened, connecting etc. */
'connection.update' : Partial < ConnectionState >
/** credentials updated -- some metadata, keys or something */
'creds.update' : Partial < AuthenticationCreds >
/** history sync, everything is reverse chronologically sorted */
'messaging-history.set' : {
chats : Chat [ ]
contacts : Contact [ ]
messages : WAMessage [ ]
isLatest : boolean
}
/** upsert chats */
'chats.upsert' : Chat [ ]
/** update the given chats */
'chats.update' : Partial < Chat > [ ]
/** delete chats with given ID */
'chats.delete' : string [ ]
'labels.association' : LabelAssociation
'labels.edit' : Label
/** presence of contact in a chat updated */
'presence.update' : { id : string , presences : { [ participant : string ] : PresenceData } }
'contacts.upsert' : Contact [ ]
'contacts.update' : Partial < Contact > [ ]
'messages.delete' : { keys : WAMessageKey [ ] } | { jid : string , all : true }
'messages.update' : WAMessageUpdate [ ]
'messages.media-update' : { key : WAMessageKey , media ?: { ciphertext : Uint8Array , iv : Uint8Array } , error ?: Boom } [ ]
/**
* add/update the given messages. If they were received while the connection was online,
* the update will have type: "notify"
* */
'messages.upsert' : { messages : WAMessage [ ] , type : MessageUpsertType }
/** message was reacted to. If reaction was removed -- then "reaction.text" will be falsey */
'messages.reaction' : { key : WAMessageKey , reaction : proto . IReaction } [ ]
'message-receipt.update' : MessageUserReceiptUpdate [ ]
'groups.upsert' : GroupMetadata [ ]
'groups.update' : Partial < GroupMetadata > [ ]
/** apply an action to participants in a group */
'group-participants.update' : { id : string , participants : string [ ] , action : ParticipantAction }
'blocklist.set' : { blocklist : string [ ] }
'blocklist.update' : { blocklist : string [ ] , type : 'add' | 'remove' }
/** Receive an update on a call, including when the call was received, rejected, accepted */
'call' : WACallEvent [ ]
}
Você pode ouvir esses eventos assim:
const sock = makeWASocket ( )
sock . ev . on ( 'messages.upsert' , ( { messages } ) => {
console . log ( 'got messages' , messages )
} )
Baileys não vem com armazenamento padrão para bate-papos, contatos ou mensagens. No entanto, foi fornecida uma implementação simples na memória. A loja escuta atualizações de chat, novas mensagens, atualizações de mensagens, etc., para ter sempre uma versão atualizada dos dados.
Pode ser usado da seguinte forma:
import makeWASocket , { makeInMemoryStore } from '@whiskeysockets/baileys'
// the store maintains the data of the WA connection in memory
// can be written out to a file & read from it
const store = makeInMemoryStore ( { } )
// can be read from a file
store . readFromFile ( './baileys_store.json' )
// saves the state to a file every 10s
setInterval ( ( ) => {
store . writeToFile ( './baileys_store.json' )
} , 10_000 )
const sock = makeWASocket ( { } )
// will listen from this socket
// the store can listen from a new socket once the current socket outlives its lifetime
store . bind ( sock . ev )
sock . ev . on ( 'chats.upsert' , ( ) => {
// can use "store.chats" however you want, even after the socket dies out
// "chats" => a KeyedDB instance
console . log ( 'got chats' , store . chats . all ( ) )
} )
sock . ev . on ( 'contacts.upsert' , ( ) => {
console . log ( 'got contacts' , Object . values ( store . contacts ) )
} )
O armazenamento também fornece algumas funções simples, como loadMessages
, que utilizam o armazenamento para acelerar a recuperação de dados.
Nota: Eu recomendo fortemente construir seu próprio armazenamento de dados especialmente para conexões MD, pois armazenar todo o histórico de bate-papo de alguém na memória é um terrível desperdício de RAM.
Envie todos os tipos de mensagens com uma única função:
import { MessageType , MessageOptions , Mimetype } from '@whiskeysockets/baileys'
const id = '[email protected]' // the WhatsApp ID
// send a simple text!
const sentMsg = await sock . sendMessage ( id , { text : 'oh hello there' } )
// send a reply messagge
const sentMsg = await sock . sendMessage ( id , { text : 'oh hello there' } , { quoted : message } )
// send a mentions message
const sentMsg = await sock . sendMessage ( id , { text : '@12345678901' , mentions : [ '[email protected]' ] } )
// send a location!
const sentMsg = await sock . sendMessage (
id ,
{ location : { degreesLatitude : 24.121231 , degreesLongitude : 55.1121221 } }
)
// send a contact!
const vcard = 'BEGIN:VCARDn' // metadata of the contact card
+ 'VERSION:3.0n'
+ 'FN:Jeff Singhn' // full name
+ 'ORG:Ashoka Uni;n' // the organization of the contact
+ 'TEL;type=CELL;type=VOICE;waid=911234567890:+91 12345 67890n' // WhatsApp ID + phone number
+ 'END:VCARD'
const sentMsg = await sock . sendMessage (
id ,
{
contacts : {
displayName : 'Jeff' ,
contacts : [ { vcard } ]
}
}
)
const reactionMessage = {
react : {
text : "?" , // use an empty string to remove the reaction
key : message . key
}
}
const sendMsg = await sock . sendMessage ( id , reactionMessage )
link-preview-js
como uma dependência ao seu projeto com yarn add link-preview-js
// send a link
const sentMsg = await sock . sendMessage ( id , { text : 'Hi, this was sent using https://github.com/adiwajshing/baileys' } )
O envio de mídia (vídeo, adesivos, imagens) é mais fácil e eficiente do que nunca.
import { MessageType , MessageOptions , Mimetype } from '@whiskeysockets/baileys'
// Sending gifs
await sock . sendMessage (
id ,
{
video : fs . readFileSync ( "Media/ma_gif.mp4" ) ,
caption : "hello!" ,
gifPlayback : true
}
)
await sock . sendMessage (
id ,
{
video : "./Media/ma_gif.mp4" ,
caption : "hello!" ,
gifPlayback : true ,
ptv : false // if set to true, will send as a `video note`
}
)
// send an audio file
await sock . sendMessage (
id ,
{ audio : { url : "./Media/audio.mp3" } , mimetype : 'audio/mp4' }
{ url : "Media/audio.mp3" } , // can send mp3, mp4, & ogg
)
id
é o ID do WhatsApp da pessoa ou grupo para o qual você está enviando a mensagem.[country code][phone number]@s.whatsapp.net
[email protected]
.[email protected]
.[timestamp of creation]@broadcast
.status@broadcast
.jimp
ou sharp
como uma dependência em seu projeto usando yarn add jimp
ou yarn add sharp
. Miniaturas de vídeos também podem ser geradas automaticamente, porém você precisa ter ffmpeg
instalado em seu sistema. const info : MessageOptions = {
quoted : quotedMessage , // the message you want to quote
contextInfo : { forwardingScore : 2 , isForwarded : true } , // some random context info (can show a forwarded message with this too)
timestamp : Date ( ) , // optional, if you want to manually set the timestamp of the message
caption : "hello there!" , // (for media messages) the caption to send with the media (cannot be sent with stickers though)
jpegThumbnail : "23GD#4/==" , /* (for location & media messages) has to be a base 64 encoded JPEG if you want to send a custom thumb,
or set to null if you don't want to send a thumbnail.
Do not enter this field if you want to automatically generate a thumb
*/
mimetype : Mimetype . pdf , /* (for media messages) specify the type of media (optional for all media types except documents),
import {Mimetype} from '@whiskeysockets/baileys'
*/
fileName : 'somefile.pdf' , // (for media messages) file name for the media
/* will send audio messages as voice notes, if set to true */
ptt : true ,
/** Should it send as a disappearing messages.
* By default 'chat' -- which follows the setting of the chat */
ephemeralExpiration : WA_DEFAULT_EPHEMERAL
}
const msg = getMessageFromStore ( '[email protected]' , 'HSJHJWH7323HSJSJ' ) // implement this on your end
await sock . sendMessage ( '[email protected]' , { forward : msg } ) // WA forward the message!
Um conjunto de chaves de mensagem deve ser explicitamente marcado como lido agora. Em vários dispositivos, você não pode marcar um “bate-papo” inteiro como lido, por assim dizer, no Baileys Web. Isso significa que você deve controlar as mensagens não lidas.
const key = {
remoteJid : '[email protected]' ,
id : 'AHASHH123123AHGA' , // id of the message you want to read
participant : '[email protected]' // the ID of the user that sent the message (undefined for individual chats)
}
// pass to readMessages function
// can pass multiple keys to read multiple messages as well
await sock . readMessages ( [ key ] )
O ID da mensagem é o identificador exclusivo da mensagem que você está marcando como lida. Em um WAMessage
, o messageID
pode ser acessado usando messageID = message.key.id
.
await sock . sendPresenceUpdate ( 'available' , id )
Isso permite que a pessoa/grupo com id
saiba se você está online, offline, digitando etc.
presence
pode ser uma das seguintes:
type WAPresence = 'unavailable' | 'available' | 'composing' | 'recording' | 'paused'
A presença expira após cerca de 10 segundos.
Observação: na versão do WhatsApp para vários dispositivos – se um cliente de desktop estiver ativo, o WA não envia notificações push para o dispositivo. Se você gostaria de receber essas notificações - marque seu cliente Baileys offline usando sock.sendPresenceUpdate('unavailable')
Se você quiser salvar a mídia que recebeu
import { writeFile } from 'fs/promises'
import { downloadMediaMessage } from '@whiskeysockets/baileys'
sock . ev . on ( 'messages.upsert' , async ( { messages } ) => {
const m = messages [ 0 ]
if ( ! m . message ) return // if there is no text or media message
const messageType = Object . keys ( m . message ) [ 0 ] // get what type of message it is -- text, image, video
// if the message is an image
if ( messageType === 'imageMessage' ) {
// download the message
const buffer = await downloadMediaMessage (
m ,
'buffer' ,
{ } ,
{
logger ,
// pass this so that baileys can request a reupload of media
// that has been deleted
reuploadRequest : sock . updateMediaMessage
}
)
// save to file
await writeFile ( './my-download.jpeg' , buffer )
}
}
Observação: o WhatsApp remove automaticamente mídias antigas de seus servidores. Para que o dispositivo acesse a mídia, é necessário um novo upload por outro dispositivo que a possua. Isso pode ser feito usando:
const updatedMediaMsg = await sock . updateMediaMessage ( msg )
const jid = '[email protected]' // can also be a group
const response = await sock . sendMessage ( jid , { text : 'hello!' } ) // send a message
// sends a message to delete the given message
// this deletes the message for everyone
await sock . sendMessage ( jid , { delete : response . key } )
Nota: a exclusão para si mesmo é suportada via chatModify
(próxima seção)
const jid = '[email protected]'
await sock . sendMessage ( jid , {
text : 'updated text goes here' ,
edit : response . key ,
} ) ;
WA usa uma forma criptografada de comunicação para enviar atualizações de chat/aplicativo. Isso foi implementado principalmente e você pode enviar as seguintes atualizações:
Arquivar um bate-papo
const lastMsgInChat = await getLastMessageInChat ( '[email protected]' ) // implement this on your end
await sock . chatModify ( { archive : true , lastMessages : [ lastMsgInChat ] } , '[email protected]' )
Ativar/desativar o som de um bate-papo
// mute for 8 hours
await sock . chatModify ( { mute : 8 * 60 * 60 * 1000 } , '[email protected]' , [ ] )
// unmute
await sock . chatModify ( { mute : null } , '[email protected]' , [ ] )
Marcar um bate-papo como lido/não lido
const lastMsgInChat = await getLastMessageInChat ( '[email protected]' ) // implement this on your end
// mark it unread
await sock . chatModify ( { markRead : false , lastMessages : [ lastMsgInChat ] } , '[email protected]' )
Excluir uma mensagem para mim
await sock . chatModify (
{ clear : { messages : [ { id : 'ATWYHDNNWU81732J' , fromMe : true , timestamp : "1654823909" } ] } } ,
'[email protected]' ,
[ ]
)
Excluir um bate-papo
const lastMsgInChat = await getLastMessageInChat ( '[email protected]' ) // implement this on your end
await sock . chatModify ( {
delete : true ,
lastMessages : [ { key : lastMsgInChat . key , messageTimestamp : lastMsgInChat . messageTimestamp } ]
} ,
'[email protected]' )
Fixar/desafixar um bate-papo
await sock . chatModify ( {
pin : true // or `false` to unpin
} ,
'[email protected]' )
Marcar/desmarcar uma mensagem com estrela
await sock . chatModify ( {
star : {
messages : [ { id : 'messageID' , fromMe : true // or `false` }],
star : true // - true: Star Message; false: Unstar Message
} } , '[email protected]' ) ;
Observação: se você errar uma de suas atualizações, o WA poderá desconectá-lo de todos os seus dispositivos e você terá que fazer login novamente.
const jid = '[email protected]' // can also be a group
// turn on disappearing messages
await sock . sendMessage (
jid ,
// this is 1 week in seconds -- how long you want messages to appear for
{ disappearingMessagesInChat : WA_DEFAULT_EPHEMERAL }
)
// will send as a disappearing message
await sock . sendMessage ( jid , { text : 'hello' } , { ephemeralExpiration : WA_DEFAULT_EPHEMERAL } )
// turn off disappearing messages
await sock . sendMessage (
jid ,
{ disappearingMessagesInChat : false }
)
const id = '123456'
const [ result ] = await sock . onWhatsApp ( id )
if ( result . exists ) console . log ( ` ${ id } exists on WhatsApp, as jid: ${ result . jid } ` )
const status = await sock . fetchStatus ( "[email protected]" )
console . log ( "status: " + status )
const status = 'Hello World!'
await sock . updateProfileStatus ( status )
const name = 'My name'
await sock . updateProfileName ( name )
// for low res picture
const ppUrl = await sock . profilePictureUrl ( "[email protected]" )
console . log ( "download profile picture from: " + ppUrl )
// for high res picture
const ppUrl = await sock . profilePictureUrl ( "[email protected]" , 'image' )
const jid = '[email protected]' // can be your own too
await sock . updateProfilePicture ( jid , { url : './new-profile-picture.jpeg' } )
const jid = '[email protected]' // can be your own too
await sock . removeProfilePicture ( jid )
// the presence update is fetched and called here
sock . ev . on ( 'presence.update' , json => console . log ( json ) )
// request updates for a chat
await sock . presenceSubscribe ( "[email protected]" )
await sock . updateBlockStatus ( "[email protected]" , "block" ) // Block user
await sock . updateBlockStatus ( "[email protected]" , "unblock" ) // Unblock user
const profile = await sock . getBusinessProfile ( "[email protected]" )
console . log ( "business description: " + profile . description + ", category: " + profile . category )
Claro, substitua xyz
por um ID real.
Para criar um grupo
// title & participants
const group = await sock . groupCreate ( "My Fab Group" , [ "[email protected]" , "[email protected]" ] )
console . log ( "created group with id: " + group . gid )
sock . sendMessage ( group . id , { text : 'hello there' } ) // say hello to everyone on the group
Para adicionar/remover pessoas de um grupo ou rebaixar/promover pessoas
// id & people to add to the group (will throw error if it fails)
const response = await sock . groupParticipantsUpdate (
"[email protected]" ,
[ "[email protected]" , "[email protected]" ] ,
"add" // replace this parameter with "remove", "demote" or "promote"
)
Para mudar o assunto do grupo
await sock . groupUpdateSubject ( "[email protected]" , "New Subject!" )
Para alterar a descrição do grupo
await sock . groupUpdateDescription ( "[email protected]" , "New Description!" )
Para alterar as configurações do grupo
// only allow admins to send messages
await sock . groupSettingUpdate ( "[email protected]" , 'announcement' )
// allow everyone to send messages
await sock . groupSettingUpdate ( "[email protected]" , 'not_announcement' )
// allow everyone to modify the group's settings -- like display picture etc.
await sock . groupSettingUpdate ( "[email protected]" , 'unlocked' )
// only allow admins to modify the group's settings
await sock . groupSettingUpdate ( "[email protected]" , 'locked' )
Para sair de um grupo
await sock . groupLeave ( "[email protected]" ) // (will throw error if it fails)
Para obter o código de convite de um grupo
const code = await sock . groupInviteCode ( "[email protected]" )
console . log ( "group code: " + code )
Para revogar o código de convite em um grupo
const code = await sock . groupRevokeInvite ( "[email protected]" )
console . log ( "New group code: " + code )
Para consultar os metadados de um grupo
const metadata = await sock . groupMetadata ( "[email protected]" )
console . log ( metadata . id + ", title: " + metadata . subject + ", description: " + metadata . desc )
Para ingressar no grupo usando o código de convite
const response = await sock . groupAcceptInvite ( "xxx" )
console . log ( "joined to: " + response )
Claro, substitua xxx
pelo código de convite.
Para obter informações do grupo por código de convite
const response = await sock . groupGetInviteInfo ( "xxx" )
console . log ( "group information: " + response )
Para ingressar no grupo usando groupInviteMessage
const response = await sock . groupAcceptInviteV4 ( "[email protected]" , groupInviteMessage )
console . log ( "joined to: " + response )
Claro, substitua xxx
pelo código de convite.
Para obter solicitação de lista, junte-se
const response = await sock . groupRequestParticipantsList ( "[email protected]" )
console . log ( response )
Para aprovar/rejeitar solicitação de adesão
const response = await sock . groupRequestParticipantsUpdate (
"[email protected]" , // id group,
[ "[email protected]" , "[email protected]" ] ,
"approve" // replace this parameter with "reject"
)
console . log ( response )
const privacySettings = await sock . fetchPrivacySettings ( true )
console . log ( "privacy settings: " + privacySettings )
const value = 'all' // 'contacts' | 'contact_blacklist' | 'none'
await sock . updateLastSeenPrivacy ( value )
const value = 'all' // 'match_last_seen'
await sock . updateOnlinePrivacy ( value )
const value = 'all' // 'contacts' | 'contact_blacklist' | 'none'
await sock . updateProfilePicturePrivacy ( value )
const value = 'all' // 'contacts' | 'contact_blacklist' | 'none'
await sock . updateStatusPrivacy ( value )
const value = 'all' // 'none'
await sock . updateReadReceiptsPrivacy ( value )
const value = 'all' // 'contacts' | 'contact_blacklist'
await sock . updateGroupsAddPrivacy ( value )
const duration = 86400 // 604800 | 7776000 | 0
await sock . updateDefaultDisappearingMode ( duration )
As mensagens podem ser enviadas para transmissões e histórias. você precisa adicionar as seguintes opções de mensagem em sendMessage, assim:
sock . sendMessage ( jid , { image : { url : url } , caption : caption } , { backgroundColor : backgroundColor , font : font , statusJidList : statusJidList , broadcast : true } )
o corpo da mensagem pode ser estendidoTextMessage ou imageMessage ou videoMessage ou voiceMessage
Você pode adicionar backgroundColor e outras opções nas opções de mensagem
broadcast: true ativa o modo de transmissão
statusJidList: uma lista de pessoas que você pode obter e que precisa fornecer, que são as pessoas que receberão esta mensagem de status.
Você pode enviar mensagens para listas de transmissão da mesma forma que envia mensagens para grupos e bate-papos individuais.
No momento, o WA Web não oferece suporte à criação de listas de transmissão, mas você ainda pode excluí-las.
Os IDs de transmissão estão no formato 12345678@broadcast
Para consultar os destinatários e o nome de uma lista de transmissão:
const bList = await sock . getBroadcastListInfo ( "1234@broadcast" )
console . log ( `list name: ${ bList . name } , recps: ${ bList . recipients } ` )
Baileys foi escrito tendo em mente a funcionalidade personalizada. Em vez de bifurcar o projeto e reescrever os internos, você pode simplesmente escrever suas próprias extensões.
Primeiro, habilite o registro de mensagens não tratadas do WhatsApp configurando:
const sock = makeWASocket ( {
logger : P ( { level : 'debug' } ) ,
} )
Isso permitirá que você veja todos os tipos de mensagens que o WhatsApp envia no console.
Alguns exemplos:
Funcionalidade para rastrear a porcentagem da bateria do seu telefone. Você habilita o registro e verá uma mensagem sobre sua bateria aparecer no console: {"level":10,"fromMe":false,"frame":{"tag":"ib","attrs":{"from":"@s.whatsapp.net"},"content":[{"tag":"edge_routing","attrs":{},"content":[{"tag":"routing_info","attrs":{},"content":{"type":"Buffer","data":[8,2,8,5]}}]}]},"msg":"communication"}
O “frame” é o que é a mensagem recebida, possui três componentes:
tag
- do que se trata este quadro (por exemplo, a mensagem terá "mensagem")attrs
- um par de valores-chave de string com alguns metadados (normalmente contém o ID da mensagem)content
- os dados reais (por exemplo, um nó de mensagem terá o conteúdo real da mensagem)Você pode registrar um retorno de chamada para um evento usando o seguinte:
// for any message with tag 'edge_routing'
sock . ws . on ( `CB:edge_routing` , ( node : BinaryNode ) => { } )
// for any message with tag 'edge_routing' and id attribute = abcd
sock . ws . on ( `CB:edge_routing,id:abcd` , ( node : BinaryNode ) => { } )
// for any message with tag 'edge_routing', id attribute = abcd & first content node routing_info
sock . ws . on ( `CB:edge_routing,id:abcd,routing_info` , ( node : BinaryNode ) => { } )
Além disso, este repositório agora está licenciado sob GPL 3, pois usa libsignal-node