【发布时间】:2016-05-23 22:33:55
【问题描述】:
在我的退货网址上购买后,我会收到以下成功消息:
数组 ([TOKEN] => EC-55E14916SE342401J [TIMESTAMP] => 2016-02-12T16:59:00Z [相关 ID] => 5d020c7d4479b [ACK] => 成功 [版本] => 119.0 [构建] => 18308778)
但在沙盒帐户上仍然没有任何变化......
这是我的代码:
$gateway = Omnipay::create('PayPal_Express');
// Initialise the gateway
$gateway->initialize(array(
'username' => 'user',
'password' => 'pass',
'signature' => 'sig',
'testMode' => true, // Or false when you are ready for live transactions
));
// Do an authorisation transaction on the gateway
$transaction = $gateway->purchase(array(
'returnUrl' => 'http://client.com/api/return',
'cancelUrl' => 'http://localhost:8000/cancel',
'amount' => '10.00',
'currency' => 'USD',
'description' => 'This is a test authorize transaction.',
// 'card' => $card,
));
$this->response = $transaction->send();
if ($this->response->isRedirect()) {
// Yes it's a redirect. Redirect the customer to this URL:
$redirectUrl = $this->response->getRedirectUrl();
return redirect($redirectUrl);
}
有谁知道问题出在哪里?
【问题讨论】:
标签: php paypal paypal-sandbox omnipay