2014-03-03 73 views
1

我使用的是Authorize.NET PHP SDK。我已經添加下面的代碼來驗證碼CVVAuthorize.NET CVV驗證

$auth = new AuthorizeNetAIM; 
$auth->amount = $amount; 
$auth->card_num = $cc; 
$auth->exp_date = $expiry_date; 
$auth->x_card_code = $cc; 

,但現在我得到以下異常:

Error: Uncaught exception 'AuthorizeNetException' with message 'Error: no field x_card_code exists in the AIM API. 

如何驗證CVV?

回答

3

我使用了錯誤的字段名稱,它的card_code不是x_card_code。

相關問題