Auties00 / Cobalt

Standalone unofficial fully-featured Whatsapp Web and Mobile API for Java and Kotlin
MIT License
634 stars 185 forks source link

Example that shows receive of files (images, videos, pdf, etc.) #284

Closed open-sudo closed 1 year ago

open-sudo commented 1 year ago

Please I need an Example that shows how to receive a file from a user in a chat session. The documentation has examples of sending files but I could not find examples of receiving them. If you could share an example that would be much appreciated.

Auties00 commented 1 year ago

Please I need an Example that shows how to receive a file from a user in a chat session. The documentation has examples of sending files but I could not find examples of receiving them. If you could share an example that would be much appreciated.

Use the onNewMessage listener, check it the category of the message is media, if it is cast info.message().content() to MediaMessage and download it.

open-sudo commented 1 year ago

Thanks. That helped a lot.