I'm using Paypal website payment standard to subscription for my site. Here is the variables passing in Paypal which I dumped. I'm passing this values to 'https://www.sandbox.paypal.com/cgi-bin/webscr' using post method.

Field Name     Value
a3             19.99 
business       [email]
cancel_return  http://example.com
cmd            _xclick-subscriptions 
currency_code  USD 
custom         This is custom 
invoice        [invoice]
item_name      Account
item_number    21
no_note        1 
no_shipping    1 
notify_url     http://example.com/ipn
p3             1 
return         http://example.com/success 
rm             2 
sra            1 
src            1 
srt            1 
t3             D

Now the matter is this that the Paypal shows a error : The link you have used to enter the PayPal system is invalid. Please review the link and try again. Anyone knows how to fix this?

link|improve this question

here is a sample code from my app pastebin.com/XxHuTK4V – Mazhar Ahmed Aug 15 '11 at 10:30
Perhaps, try valid cancel/notify/return URLs? – Josh Aug 15 '11 at 13:47
they are OK. correctly entered – Mazhar Ahmed Aug 16 '11 at 15:33
You mean to say, you didn't use example.com? – Josh Aug 16 '11 at 16:32
feedback

1 Answer

up vote 1 down vote accepted

Don't use srt = 1. Use srt to set the number of times the subscription should renew. 1 doesn't make any sense because a recurring payment that occurs one time is not a recurring payment. Just leave srt off if it is 1, and it will default to recur until someone cancels it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.