Tou*_*bir 9 php exception whatsapp
我正在尝试实现whatsAPI,但我总是得到这个错误
" 尝试请求代码时出现问题 ".
以下是我的控制台中显示的完整错误:
####start of error notice#####
[12-Mar-2013 22:44:59] PHP Notice: Undefined property: stdClass::$reason in /Applications/MAMP/htdocs/whatsapp/test/whatsprot.class.php on line 1268
[12-Mar-2013 22:44:59] PHP Fatal error: Uncaught exception 'Exception' with message 'There was a problem trying to request the code.' in /Applications/MAMP/htdocs/whatsapp/test/whatsprot.class.php:1269
Stack trace:
#0 /Applications/MAMP/htdocs/whatsapp/test/test.php(36): WhatsProt->checkCredentials()
#1 {main}
thrown in /Applications/MAMP/htdocs/whatsapp/test/whatsprot.class.php on line 1269
####end of error notice#####
Run Code Online (Sandbox Code Playgroud)
这些是我初始化课程的凭据
$userPhone = '8801770648732';
$userIdentity = '352264050503669';
$userName = 'shishir';
$destinationPhone = '8801713206053';
$debug = TRUE;
$whatsapp = new WhatsProt($userPhone, $userIdentity, $userName, $debug);
Run Code Online (Sandbox Code Playgroud)
并且用于请求requestCode
$service_type = "sms";
$country_code = "BD";
$language_code = "en";
$request_code = $whatsapp->requestCode($service_type, $country_code, $language_code);
Run Code Online (Sandbox Code Playgroud)
每次它都陷入了 $whatsapp->requestCode那个错误.
我不确定我做错了什么.
谁可以帮我这个事?