我在我的网站上使用whatsapp api当我在本地使用它时它可以工作但是当我将我的网站上传到服务器它停止工作时,这是来自whatsapp服务器的响应
<stream:features>
tx <readreceipts></readreceipts>
tx <groups_v2></groups_v2>
tx <privacy></privacy>
tx <presence></presence>
tx </stream:features>
tx <auth mechanism="WAUTH-2" user="961xxxxxxx"></auth>
然后我执行从服务器请求验证号和密码的代码,但我得到了相同的结果 用于发送消息的php代码是:
$password="XXXXXXXXXXX";
$userPhone="961XXXXXXXX";
$userIdentity="hello";
$debug=true;
$phone="961XXXXXXX";
$w = new WhatsProt($userPhone, $userIdentity, $debug);
$w->Connect();
$w->loginWithPassword($password);
$w->sendMessage($phone , $msg);
问题是什么?