Page 1 of 1

Paypal payment button

Posted: Sun May 19, 2013 7:42 am
by tanjc
Hi,

I need help on how to incorporate / integrate the Paypal payment button in Livecode. Paypal provide the script for the button but how can I make it work, like all other e-commerce system, when a user click on the button, it will send them to the Paypal login page.

Thanks for your help.

Re: Paypal payment button

Posted: Sun May 19, 2013 7:47 am
by Simon
Are you asking about "launch url"? Look it up in the dictionary.
Or was there something else?

Simon

Re: Paypal payment button

Posted: Sun May 19, 2013 8:17 am
by Thierry
tanjc wrote:Hi,
I need help on how to incorporate / integrate the Paypal payment button in Livecode.
Thanks for your help.
Maybe something like that:

constant paypalURL = "https://paypal..."
put "X=xxxx&Y=yyyy" into formData
post formData to URL paypalURL

Replace X, Y with specific paypal datas.

HTH,

Thierry