我已将 PayPal 与我的 eshop 连接,并且我想在成功付款后重定向回我的 eshop 到没有付款变量的特定页面。在手册中写入使用参数
rm=1
我的架构如下所示:
$this->form = array('cmd' => '_xclick',
'business' => 'bis@email.tld',
'cert_id' => 'ABCDEFGDe',
'lc' => 'EN',
'custom' => 'test',
'invoice' => $orderId,
'currency_code' => 'EUR',
'no_shipping' => '1',
'no_note'=>'1',
'item_name' => 'bought item',
'item_number' => '1',
'rm'=>'1',
'amount' => $price,
'return'=> $returnURL,
'notify_url'=>$notifyURL,
);
但即使 rm 设置为 1 并设置了 return,PayPal 仍然使用 GET 方法(如 rm=0)重定向回我的页面,并使用所有参数
有没有办法正确设置 rm=1 ?我也试过不带引号