eWay を使用して定期的な毎月の支払いを処理するには、支払いゲートウェイが必要です。eWay に登録し、Sandbox カスタマー ID、Sandbox ユーザー名、ログイン URL を受け取りました。
私はphp(Codeignioter 2.1)を使用しています。http://www.eway.com.au/developers/api/recurringにリンクがあります。しかし、これが私のphp-appでどのように使用されているかわかりません。SoapClient 関数で SOAP ライブラリを使用する必要がありますか? phpの例を教えてください。
前もって感謝します。
ありがとうございます。まだいくつか質問があります。
$eWay = new eWay('REAL_TIME_CVN', TRUE); // Which must be this parameter if I use sandbox for testing ?
$eWay
->setCustomerID('87654321') // Is it customer ID I recieved when I registered at eWay site ?
->setCardNumber('4444333322221111') // Is this parameter and parameters below are data of User(not customer above) who pays money to Customer above ?
->setCardHoldersName('John Smith')
->setPaymentAmount(1.00)
->setCardExpiry('08', '09')
->setCVN('123')
->setCustomerFirstName('Firstname')
->setCustomerLastName('Lastname')
->setCustomerEmail('name@xyz.com.au')
->setCustomerAddress('123 Someplace Street, Somewhere ACT')
->setCustomerPostcode('2609')
->setCustomerInvoiceReference('INV120394')
->setCustomerInvoiceDescription('Testing')
->setCustomerTransactionReference('4230')
->setOption1('Option Number One')
->setOption2('Option Number Two')
->setOption3('Option Number Three')
;
$eWay->pay(); // I do not have to pay, but I have to verify if payment is made monthly. Which menthod have I to use?
eWay クラスで、loadPaymentResponse メソッドの定義を見つけました。
public function loadPaymentResponse($response_string)
{
$response = simplexml_load_string($response_string);
$this->transactionError = (string) $response->{'ewayTrxnError'};
$this->transactionStatus = (string) $response->{'ewayTrxnStatus'};
$this->transactionNumber = (string) $response->{'ewayTrxnNumber'};
$this->transactionReference = (string) $response->{'ewayTrxnReference'};
$this->transactionAmount = (string) $response->{'ewayReturnAmount'};
$this->transactionAuthNumber = (string) $response->{'ewayAuthCode'};
$this->transactionOption1 = (string) $response->{'ewayTrxnOption1'};
$this->transactionOption2 = (string) $response->{'ewayTrxnOption2'};
$this->transactionOption3 = (string) $response->{'ewayTrxnOption3'};
$this->transactionBeagleScore = (string) $response->{'ewayBeagleScore'};
if(preg_match('/^\d{2}/', $this->transactionError, $code))
{
$this->responseCode = $code[0];
}
}
しかし、$response_string パラメータとは何ですか?