Hobbyist
Hobbyist

Reputation: 16182

subscr_payment using paypal ipn simulator

The paypal IPN simulator "currently" (As in I'm assuming never will) does not have functionality to test the subscr_payment payment option, this is really putting a dead hault in my project. I've read that I can just create a button that simulates this, but I don't have a clue how and after looking I can't find any information on it.

I'm creating a subscription based system for hosting a special type of website, I have everything done besides for the subscription model now and it seems like it's going to be the hardest part.

Upvotes: 1

Views: 192

Answers (2)

Discreet Systems
Discreet Systems

Reputation: 51

Hopefully this workaround will help you. From within the PayPal developer site, you can go to the IPN simulator, select Transaction Type as Web Accept, click Show All Fields. You can then edit txn_type to be subscr_payment, subscr_signup, etc.

It's not perfect, as it doesn't give you all of the variables, but you can put info in other entries, and use a logical to determine whether or not the correct entry exists.

Do one test subscription, so that you have the values, and then work from there.

Upvotes: 0

Bhavya Shaktawat
Bhavya Shaktawat

Reputation: 2512

It is completely possible to test recurring billing with Paypal.

There are multiple ways possible for this.

One is the paypal subscribe button and another way (which i have used) is via a subscription form.

For the subscribe button you can refer this documentation, it contains all the information you need to setup this.

For second method, you need to create a form and place all the required variable in that form.

All the required variables are listed here.

I hope this helps.

Upvotes: 1

Related Questions