paypal-sandbox

Paypal Express checkout + php cURL Execute payment not show payment notification on sandbox

僤鯓⒐⒋嵵緔 提交于 2019-12-06 13:09:43
i'm testing paypal integration, in a php demo test on my apache server with a vhost -> test.it/paypal. I use Express Checkout + Server-side REST (cURL). My js Add the PayPal button is: <script> var CREATE_PAYMENT_URL = 'http://test.it/paypal/create-payment.php'; var EXECUTE_PAYMENT_URL = 'http://test.it/paypal/execute-payment.php'; paypal.Button.render({ env: 'sandbox', // Or 'production', commit: true, // Show a 'Pay Now' button locale: 'it_IT', style: { size: 'small', color: 'blue', shape: 'pill', label: 'checkout' }, commit: true, // Show a 'Pay Now' button payment: function() { // Make a

Paypal sandbox not working anymore

假如想象 提交于 2019-12-06 08:48:44
Everything was working fine last Friday, but today I have been getting the following message: . The message I get when trying to make a payment using paypal sandbox is this: We can't process your payment right now, so please try again later. We're sorry for the inconvenience. It's been like this all day, not sure if something has happened to my system or if something has happened to paypal's sandbox? NOTIFICATION FROM PAYPAL: Notification: Issues with Sandbox with preconfigured accounts - Jan 24 Source: https://www.x.com/content/notification-issues-sandbox-preconfigured-accounts-jan-24

Not able to specify “amount” per payment request on PayPal HTMLButton

我的梦境 提交于 2019-12-06 08:19:55
I am trying to integrate with PayPal using the "HTML Buttons" approach. The checkout flow is rather simple, user clicks "Buy Now" -> transferred to PayPal -> payment processed -> returned to the site. Based on the item that the customer wants to "Buy Now", the "amount" in the submitted form will vary, and I am unable to get PayPal to accept the value I am sending. I always see a text input which is empty when redirected to PayPal. I tried hosted and unhosted buttons but still not able to see the desired effect. hosted button HTML example: <form action="https://www.sandbox.paypal.com/cgi-bin

Paypal IPN response not getting into Android Mobile Browser

ぐ巨炮叔叔 提交于 2019-12-06 07:41:10
问题 I am new to Paypal integration, and I am trying to implement Paypal IPN for my android application. For make it working, I have created one web-page (Using PHP and sending to Paypal sandbox account , method (GET) ) in that I am doing payment. And I am getting payment status from this. Actually this web page working properly and get response after do payment into Computer Browser but same thing if I am doing payment with Android Mobile browser then I am not getting any response form the Paypal

PayPal Plus Sandbox - Pay upon Invoice

风格不统一 提交于 2019-12-06 06:48:58
I'm integrating PayPal Plus, successfully on my site, except "Pay upon Invoice". Here's my JavaScript code for integrating the payment wall: <script src="https://www.paypalobjects.com/webstatic/ppplus/ppplus.min.js" type="text/javascript"></script> <script type="application/javascript"> var ppp = PAYPAL.apps.PPP({ "approvalUrl": "<?= $createPaymentArr['links'][1]['href']; ?>", "placeholder": "ppplus", "language": "de_DE", "mode": "sandbox", "showPuiOnSandbox": "true", "country": "DE" }); </script> When I try to use "Pay upon Invoice" I get this error message: "Unfortunately we can not process

PayPal NVP Error: CURL Request failed: SSL connect error (35)

此生再无相见时 提交于 2019-12-06 05:34:57
I am getting this error when connecting the PayPal (NVP) API; CURL Request failed: SSL connect error(35) This means that I can't connect because I am probably using SSL3, how can I fix this issue as I can't go live without testing.. Do I have to change my server or can I fix it in the CURL request? I have the workaround solution which you facing now(i too facing the problem from last week with sandbox environment) now you should try something like in your curl call curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT

PayPal Digital Goods Error on login

别来无恙 提交于 2019-12-06 04:29:09
I am using the following code to accept payments for digital goods: https://www.x.com/blogs/Nate/2011/01/07/digital-goods-with-express-checkout-in-php I have a sandbox account and I have used the API credentials from the sandbox account. Everything works fine until I press the "Pay with PayPal" button. At this point when I try to login to continue the simulated transaction I receive the following error: "We are unable to complete your request at this time. Please try again later. We apologize for the inconvenience." I have no idea whet I'm doing wrong, can somebody help? There are a number of

Checking if paypal payment was successful

人走茶凉 提交于 2019-12-05 16:39:00
I have downloaded sample code from paypal to allow me to use parallel payments via their sandbox accounts. When I run parallel.php, I get redirected to paypal's sandbox login page. How am I supposed to know "server side" that the payment has been made successfully, so I can update my database records? I believe you have to work with PayPals IPN system. This will basically send a confirmation to your server that tells you it has gone through. https://www.paypal.com/ipn Paypal lets you register a notification url which is part of the IPN (instant payment notification IIRC) system. So if someone

Paypal HTML integration problems (sales tax not showing for recurring payment)

瘦欲@ 提交于 2019-12-05 16:16:28
I am using the Paypal standard (HTML 'API') to integrate Paypal to my website. I have managed to display 'subscribe' buttons for recurring payments, using HTML variables as specified in the Paypal documentation. However, there is one serious "show stopper" problem: I am unable to get Paypal to recognize sales tax amount for RECURRING PAYMENTS. Despite using the 'tax' field (and setting a positive number to it), the tax is not being displayed on the bill for the recurring item. Using the 'tax' field for a 'buy now' button does however work correctly (the tax amount is shown on the bill page).

Unable to generate a temporary class (result=1). error CS0030:

本小妞迷上赌 提交于 2019-12-05 12:05:47
问题 I am trying to paypal express checkout i used https://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl. when i call use PayPalAPIAASoapBinding paypal = new PayPalAPIAASoapBinding(); i am getting error Unable to generate a temporary class (result=1). error CS0030: Cannot convert type 'exprtesscheckoutdemo.com.paypal.sandbox.TupleType[]' to 'paypal.sandbox.TupleType' error CS0029: Cannot implicitly convert type 'paypal.sandbox.TupleType' to how to over come this 回答1: Just hit this myself when