I'm integrating mobile payments with Paypal. I just have one question.
I'm thinking about two posible implementations:
1) Using Android SDK to make payments with Paypal and after confirmation, put the data to the server 2) Make Paypal communication via server side. When an user wants to buy through android app, it will ask the server to do it. After that, server responds with the appropiate answer.
I think I'm chosing the second one, but, any advices?
Also, server is being developed with node.js. Any advices of how to handle paypal payments? I've seen paynode (https://github.com/jamescarr/paynode) but I don't know if its the right choice.
Thanks!