如何使用WhatsAPI Official从PhP中的WhatsApp发送消息?

2022-08-30 22:28:16

我正在尝试使用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";
?>

我在库new WhatsProt()上遇到了一些问题,它阻止了所有代码(可能是套接字?

所以我的问题是,我该如何解决这个问题?如果不是,是否有任何其他解决方案可以从pho脚本发送消息?


答案 1

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

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

在 中配置源代码并运行文件。Apacheexamples/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'
);

它为我工作..


答案 2

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

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

到目前为止,这似乎是唯一可行的选择,因为其他所有内容都已关闭或很有可能使您的帐户被禁止

请参阅此处的讨论:

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


推荐