The problem is in the buyer paypal account. The problem is that Total appears $0.00 USD not $0.02. The amount inside the recurring is set to $0.02
This is the parameters that I set with CreateRecurringPaymentsProfile :
$padata = array(
'L_PAYMENTREQUEST_0_NAME0' => 'My Product',
'PROFILEREFERENCE' => 'RPInvoice123',
'PROFILESTARTDATE' => date('Y-m-d') . 'T' . date('H:i:s').'Z',
'SUBSCRIBERNAME' => 'Mr Sub Scriber',
'TOKEN' => urlencode($token),
'DESC' => 'My Product + Second Product',
'AMT' => '0.02',
'BILLINGPERIOD' => 'Month',
'BILLINGFREQUENCY' => '1',
'TOTALBILLINGCYCLES' => '12',
'REGULARTOTALBILLINGCYCLES' => '1',
'VERSION' => '74.0',
'MAXFAILEDPAYMENTS' => '1',
'L_PAYMENTREQUEST_0_AMT0' => '0.02',
'L_PAYMENTREQUEST_0_NUMBER0' => '10101',
'L_PAYMENTREQUEST_0_QTY0' => '1',
'L_BILLINGTYPE0' => 'RecurringPayments',
'L_BILLINGAGREEMENTDESCRIPTION0' => 'My Product + Second Product',
'L_PAYMENTREQUEST_0_ITEMCATEGORY0' => 'Digital'
);
How can I get this working?