如何使用 WhatsAPI Official 在 PHP 中从 WhatsApp 发送消息?
How to send message from WhatsApp in PHP with WhatsAPI Official?
我正在尝试使用 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 脚本发送消息?
您可以使用以下脚本从 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'
);
它对我有用..
afaik 你目前最好为 python 项目编写一个接口。例如。有一个微服务可以在 python 中为您发送消息,您可以通过一些 json 请求或类似的
来调用它们
看到这个项目,看起来很有前途:https://github.com/tgalal/yowsup
这似乎是迄今为止唯一可行的选择,因为其他一切都已关闭或很有可能让您的帐户被禁止
在此处查看讨论:
我正在尝试使用 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 脚本发送消息?
您可以使用以下脚本从 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'
);
它对我有用..
afaik 你目前最好为 python 项目编写一个接口。例如。有一个微服务可以在 python 中为您发送消息,您可以通过一些 json 请求或类似的
来调用它们看到这个项目,看起来很有前途:https://github.com/tgalal/yowsup
这似乎是迄今为止唯一可行的选择,因为其他一切都已关闭或很有可能让您的帐户被禁止
在此处查看讨论: