I want to implement the recurring paymentusing the payflow link and paypal hosted pages. But going through the development guides of PayPal i couldn't find any effective solution. Say for payflow link my code will be like this :
<form method="POST" action="https://mylinktoPayPalPayflow.com">
<input type="hidden" name="LOGIN" value="Your LOGIN here">
<input type="hidden" name="PARTNER" value="Your PARTNER here">
<input type="hidden" name="DESCRIPTION" value="Order description here">
<input type="hidden" name="AMOUNT" value="Total transaction AMOUNT here">
<input type="hidden" name="TYPE" value="Transaction TYPE here">
<input type="submit" value="Click Here to Purchase">
</form>
Here : LOGIN: The login name that you chose for your Payflow account.
PARTNER: The name of your Partner was provided to you by your reseller.
AMOUNT: Total amount of the transaction. The value must be greater than 1.00.
TYPE: A single letter that identifies the type of transaction (S for sale, A for authorization).
But Transaction type is either Sale or Authorization here.
Is there any way to implement the recurring payment here ?