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

时间:2015-01-16 06:08:49

标签: php api whatsapp

我看过这个链接: http://blog.philippheckel.com/2013/07/07/send-whatsapp-messages-via-php-script-using-whatsapi/ 在这个链接中,所有的东西都显示了如何发送消息,但是没有任何方法可以从whatsapp到php web app获取图像。 请帮我做这个任务。 提前谢谢!

2 个答案:

答案 0 :(得分:2)

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

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

查看此处的示例https://github.com/mgp25/Chat-API/tree/master/examples

答案 1 :(得分:0)

您必须订阅接收媒体项时触发的事件。这些事件以GetImage和onGetVideo命名。对于所有可用的事件及其属性,请查看WhatsApi的事件类。