我正在查看此代码:https://github.com/venomous0x/WhatsAPI
在页面上: /src/php/EXAMPLES.php
我做了以下更改(我认为这是我需要修改的内容。我显然在本例中使用了不同的IMEI号码和手机号码):
$userPhone = '447799999999'; # Telephone number including the country code without '+' or '00'.
$userIdentity = '98B898B898B8'; # This is tipically the IMEI number.
# If you are using an iOS device you should input your WLAN MAC address.
$userName = 'John Doe'; # This is the username displayed by WhatsApp clients.
$destinationPhone = '447788888888'; # Destination telephone number including the country code without '+' or '00'.
# For groups: [phone number]-[group id].
$debug = TRUE;
$w->requestCode('sms', 'GB', 'en');
$w->registerCode('123456');
但是当我在我的服务器上导航到这个example.php页面时,我收到以下错误:
致命错误:未捕获的异常'异常',消息'有一个 试图请求代码的问题。在 /whatsapp/src/php/whatsprot.class.php:1174 堆栈跟踪:#0 /whatsapp/src/php/EXAMPLES.php(49): WhatsProt-> requestCode('sms','GB','en')#1 {main}抛出 /whatsapp/src/php/whatsprot.class.php上 第1174行
我只是想知道自己哪里出错了,有人能说清楚吗?感谢
答案 0 :(得分:1)
你在哪里实例化WhatsProt课程? 你需要使用这一行:
$w = new WhatsProt($userPhone, $userIdentity, $userName, $debug);
答案 1 :(得分:0)
还要确保您拥有最新的src文件,不断变化,只需重新下载src文件并覆盖当前文件