[Solved] How to automaticly update some thing after user pay with paypal [closed]

According to PayPal’s documentation, “When a customer makes a payment to you or a payment is reversed or refunded, PayPal will post a notification to your server at the URL you specified.” You provide them with the page, e.g. www.my-site.com/process.php, and payment should post. Handle that with if ($_POST[“payment”] != “”){ …your code to interact … Read more

[Solved] PayPal REST SDK: Remove shipping address and payment authorization so it does go to pending state [closed]

This document shows the use of the no_shipping field in button code: https://developer.paypal.com/docs/checkout/how-to/customize-flow/#pass-experience-profile-options To call the API directly, you have to create a web experience profile object containing this field (input_fields.no_shipping): https://developer.paypal.com/docs/api/payment-experience/v1/#web-profiles_create Then reference it in your /payment call (the experience_profile_id field) https://developer.paypal.com/docs/api/payments/v1/#payment 1 solved PayPal REST SDK: Remove shipping address and payment authorization so … Read more

[Solved] easiest way to connect paypal to my own shopping kart [closed]

Paypal express is the cheapest & easiest solution, particularly if you want to store information in your database about whether or not the transaction was successful. If all you need is button functionality, you can use the paypal api to generate dynamic buttons. Just see – https://www.x.com/developers/paypal/products/button-manager solved easiest way to connect paypal to my … Read more