Problems with Paypal

Everything about ToME 4.x.x. No spoilers, please

Moderator: Moderator

Post Reply
Message
Author
Pucker
Wayist
Posts: 18
Joined: Sat Nov 05, 2011 5:08 pm

Problems with Paypal

#1 Post by Pucker »

Hey so when I try to donate, I keep getting this error no matter which payment method I choose from Paypal.

While we're on the topic, Paypal kind of sucks and everyone knows this. I would recommend something like stripe.com to process payments.

It's really easy to implement and you won't have to deal with Paypal!

darkgod
Master of Eyal
Posts: 10750
Joined: Wed Jul 24, 2002 9:26 pm
Location: Angolwen
Contact:

Re: Problems with Paypal

#2 Post by darkgod »

I'll see to implement other methods yeah.
However I wont remove paypal, sucky or not, liked or not, it's massively the most known one
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning ;)

Pucker
Wayist
Posts: 18
Joined: Sat Nov 05, 2011 5:08 pm

Re: Problems with Paypal

#3 Post by Pucker »

Thanks that would be awesome!

I just want to give you my money :D

random417
Halfling
Posts: 92
Joined: Tue Oct 30, 2012 7:37 pm

Re: Problems with Paypal

#4 Post by random417 »

Yeah, I don't paypal. As soon as you get something else set up, I'll give you my money as well.

Pucker
Wayist
Posts: 18
Joined: Sat Nov 05, 2011 5:08 pm

Re: Problems with Paypal

#5 Post by Pucker »

Also, I'm not sure if stripe.com works in Europe yet, but here's a similar one that does work in Europe: http://www.paymill.com

aardvark
Wyrmic
Posts: 200
Joined: Wed Aug 22, 2012 12:16 am

Re: Problems with Paypal

#6 Post by aardvark »

I haven't checked lately, but the last time I looked both Amazon Payments and Google Checkout had the same fees, etc. as PayPal. The Humble Bundles have supported all three of those options for as long as I've been aware of them.

Pucker
Wayist
Posts: 18
Joined: Sat Nov 05, 2011 5:08 pm

Re: Problems with Paypal

#7 Post by Pucker »

From a UX (user experience) point of view, payment portals with passthru are kind of clunky, seeing as how you jump from your site's look and feel to google's look and feel, to back to your site's look and feel. It's just kind of weird and doesn't really foster an image of professionalism.

These kinds of web apps like stripe and paymill are the way to go, you can completely integrate them into your site's UX/UI and give the user a seamless and professional-looking user experience. They are dirt easy to implement too, it's basically a single API call to make a payment and they don't need a google account or whatever:

Code: Select all

curl https://api.paymill.de/v2/transactions \
  -u ad091cc9005eea24f0d4dce2b3fbf8cc: \
  -d "amount=4200" \
  -d "currency=EUR" \
  -d "token=098f6bcd4621d373cade4e832627b4f6" \
  -d "description=Test Transaction"
You're also not holding any of the user's financial information (it goes to the web app instead), so you don't need to jump through the annoying hoops of staying in line with regulations regarding online payments.

Post Reply