如何使用WhatsAPI官方发送来自WhatsApp的PHP消息?

时间:2015-04-16 10:39:16

标签: php whatsapp

我正在尝试使用WhatsApi官方库通过WhatsApp从php文件发送消息。我已经在我的Apache Web服务器中移动了库,在文件夹调用测试中,如下所示:

enter image description here

文件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";
?>

我遇到了一个库新的WhatsProt()的问题,它阻止了所有的代码(可能是套接字?)。

所以我的问题是,我该如何解决这个问题呢?如果不是,还有其他解决办法从pho脚本发送消息吗?

2 个答案:

答案 0 :(得分:4)

您可以使用以下脚本从PHP中的whatsapp发送消息。

https://github.com/venomous0x/WhatsAPI/tree/master/examples

Apache中配置源代码并运行examples/whatsapp.php文件。

您已更改以下配置。

//simple password to view this script
$config['webpassword'] = 'MakeUpPassword';

$config['YOURNAME'] = array(
'id' => 'e807f1fcf82d132f9bb018ca6738a19f',
'fromNumber' => '441234567890',
'nick' => "YOURNICKNAME",
'waPassword' => "EsdfsawS+/ffdskjsdhwebdgxbs=",
'email' => 'testemail@gmail.com',
'emailPassword' => 'gmailpassword'
);

这对我有用..

答案 1 :(得分:0)

afaik你现在可能最好写一个python项目的接口。例如。有一个微服务,在python中为你发送消息,你通过一些json请求或类似的方式调用它们

看到这个项目,看起来很有希望:https://github.com/tgalal/yowsup

到目前为止,它似乎是唯一可行的选择,因为其他一切都被关闭或很有可能被禁止你的帐户

见这里的讨论:

https://stackoverflow.com/a/46635985/533426