Hey,
I would like to query the group information.
I use the GroupMetaData function. But i only recive a hex code like 0xc04467b260
But should I not receive something like that? https://github.com/sigalor/whatsapp-web-reveng/issues/73
Thats my code:
groupMeta, err := wa.GetGroupMetaData(message.Info.RemoteJid)
if (err != nil){
fmt.Println("ERROR! %v", err)
}
fmt.Println(groupMeta)
p.s. Good work!
Thanks!
You will receive a channel and not a string, you have to read from the channel in your print statement like fmt.Println(<-groupMeta)
Most helpful comment
Thanks!
You will receive a channel and not a string, you have to read from the channel in your print statement like fmt.Println(<-groupMeta)