我想使用 whatsapi 在我的 php 网站上获取 whatsapp 图片。可能吗?

I want to get whatsapp images in my php website using whatsapi. is it possible?

我看过这个link: http://blog.philippheckel.com/2013/07/07/send-whatsapp-messages-via-php-script-using-whatsapi/ 在此 link 中,所有内容都显示了如何发送消息,但没有任何方法可以将图像从 whatsapp 获取到 php 网络应用程序。 请帮我完成这个任务。 提前致谢!

您必须订阅在收到媒体项时触发的事件。这些事件被命名为 onGetImage 和 onGetVideo。对于所有可用事件及其属性,请查看 WhatsApi 中的事件 class。

您必须订阅收到物品时触发的事件。例如

$this->wa->eventManager()->bind('onGetMessage', array($this, 'processReceivedMessage'));

看看这里的例子https://github.com/mgp25/Chat-API/tree/master/examples