I am going crazy searching the web to understand why I cant get shipping cost displayed on paypal. Hope somebody can help.
I am using sandbox to test with the code from Martin Maly. All is working fine, but I need to display shipping cost on the. The version is 52.0 if required:
public function doExpressCheckout($amount, $desc, $invoice, $currency){
$data = array(
'PAYMENTACTION' =>'Sale',
'AMT' =>$amount,
'RETURNURL' =>$this->getReturnTo($invoice),
'CANCELURL' =>$this->getReturnToCancel($invoice),
'DESC'=>$desc,
'NOSHIPPING'=>"0",
'ALLOWNOTE'=>"1",
'SHIPPINGAMT'=>100,
'CURRENCYCODE'=>$currency,
'METHOD' =>'SetExpressCheckout');
I can get to the payment page but I only see description and amount. Any ideas?