I am currently trying to implement paypal recurring payment and I would like to test "whole cycle". I found this article http://www.paypalobjects.com/en_US/ebook/PP_Sandbox_UserGuide/testing_recurringpayments.html and also some references in stackoverlfow that it should work. But for me it does not seem to work. Maybe I have to dig into code for that but I was wondering should this actually work?
I am using https://github.com/thenbrent/paypal-digital-goods library and I subscription details are following:
$subscriptionDetails = array(
'description' => 'Subscription for $10/month for the next year.',
'initial_amount' => '10.00',
'amount' => '10.00',
'period' => 'Day',
'frequency' => '1',
'total_cycles' => '12',
);
$pay = new PayPal_Subscription( $subscriptionDetails );
I have put up logging at my notification receiving end but it only get's hit when I make new profile.