如何使用WhatsAPI Official从PhP中的WhatsApp发送消息?
我正在尝试使用WhatsApi官方库通过WhatsApp从php文件发送消息。我已经在我的Apache Web服务器中移动了库,在文件夹调用测试中,如下所示:
文件whatsapp.php是这个:
<?php
require_once './src/whatsprot.class.php';
$username = "1XXXXXXXXX";
$password = "password";
$w = new WhatsProt($username, "0", "My Nickname", true); //Name your application by replacing “WhatsApp Messaging”
$w->connect();
$w->loginWithPassword($password);
$target = '1xxxxxxxxx'; //Target Phone,reciever phone
$message = 'This is my messagge';
$w->SendPresenceSubscription($target); //Let us first send presence to user
$w->sendMessage($target,$message ); // Send Message
echo "Message Sent Successfully";
?>
我在库new WhatsProt()上遇到了一些问题,它阻止了所有代码(可能是套接字?
所以我的问题是,我该如何解决这个问题?如果不是,是否有任何其他解决方案可以从pho脚本发送消息?