2013-03-12 145 views
8

我想實現的whatsAPI但我總是得到這個錯誤
有試圖請求代碼有問題」。

這是在我的控制檯顯示完整的錯誤:WhatsApp的API請求代碼不執行,而不是返回請求的代碼

####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那個錯誤。
我不確定我做錯了什麼。
任何人都可以幫助我嗎?

+0

我也需要這個問題的答案 – 2016-04-15 11:44:04

回答

-1

看起來你沒有捲曲延伸。 這個例外是由checkCredentials方法引發的。

檢查您的phpinfo是否顯示捲曲。

+1

缺少cURL應該顯示一個非常非常明確的錯誤信息。我懷疑這是這種情況。 – ceejayoz 2015-01-14 18:49:51

相關問題