提问人:Touhidur Rahman Abir 提问时间:3/13/2013 最后编辑:Panos KalatzantonakisTouhidur Rahman Abir 更新时间:3/15/2023 访问量:4182
WhatsApp API 请求代码未执行且未返回请求代码
whatsapp api request code not executing and not returning a request code
问:
我正在尝试实现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#####
这些是我用于初始化类的凭据
$userPhone = '8801770648732';
$userIdentity = '352264050503669';
$userName = 'shishir';
$destinationPhone = '8801713206053';
$debug = TRUE;
$whatsapp = new WhatsProt($userPhone, $userIdentity, $userName, $debug);
以及请求 requestCode
$service_type = "sms";
$country_code = "BD";
$language_code = "en";
$request_code = $whatsapp->requestCode($service_type, $country_code, $language_code);
每次它都卡在那个错误上。
我不确定我做错了什么.
谁能帮我解决这个问题?$whatsapp->requestCode
答:
-1赞
Soyale
4/18/2013
#1
看起来你没有卷曲延伸。
此异常由方法引发。checkCredentials
检查你的 phpinfo 是否显示 curl。
评论
1赞
ceejayoz
1/15/2015
缺少 cURL 应该显示非常非常清晰的错误消息。我怀疑这里的情况是否如此。
上一个:创建自定义注释以处理异常
下一个:“catch”无法从库中捕获异常
评论