Questions tagged [paypal-pdt]

42 questions
1
vote
1 answer

Paypal PDT - SSL connect error

I use this code to process Paypal payment data transfer (PDT): $url = 'https://www.sandbox.paypal.com/cgi-bin/webscr'; $tx_token = $_GET['tx']; $auth_token = "my_token"; $fields = array( 'cmd' => '_notify-synch', 'tx' => $tx_token, 'at'…
1
vote
2 answers

nodejs paypal pdt return 302

I'm using nodejs and express. This is my code that is run on the return from Paypal. I only get a 302 errors in response from Paypal. I saw a couple examples that use ssl:// instead of https:// but nodejs yells saying that its not a valid protocol…
Blalan
  • 57
  • 4
1
vote
1 answer

PayPal PDT SSL connection hangs up on my addon domain

On my PayPal autoReturn page with a known-to-work PHP script to accommodate Payment Data Transfer, no matter what I do I keep getting this error message: "Warning: fgets(): SSL: Connection reset by peer...*(on the line where this is: '$line =…
pict5000
  • 31
  • 6
1
vote
1 answer

Paypal Sandbox - secondary, less obvious rules for using (if any), what are they?

My site works fine, no problems, in live Paypal mode using real money and real paypal accounts, so I know my listeners work, but despite trying every option (and there are so many) I've found, I can't get the sandbox to work at all, to thoroughly…
1
vote
1 answer

Can't configure PDT or IPN in paypal

I am doing an web application with java, and I want to use paypal api. My app is running in my machine(in localhost) by apache non in internet. I have created an accaunt in paypal.developper for example myproject@gmail.com . I have created some…
Nick Donovan
  • 37
  • 1
  • 5
1
vote
1 answer

PayPal connectivity - Intermittent problems with PDT

For the last 6 days (since 5/21/2014) we have been experiencing intermittent problems with our PDT call - resulting in either (403) Forbidden, or (503) Server Unavailable error codes from the PayPal servers. We are getting the IPNs, but…
0
votes
1 answer

Implementation of PayPal IPN and PDT

I'm creating an android application that uses PayPal as a payment method. I have already implemented IPN in PHP but I have some questions about the PDT. From what I understood, the PDT is a notification that occurs when the user pays and returns to…
justcivah
  • 97
  • 11
0
votes
1 answer

PDT stopped working, no parameters in return URL

I need to provide a personalized page to people who make a donation via a Paypal donation button. I've setup PDT with a PHP script on the return URL (code from https://github.com/paypal/pdt-code-samples) and it's been working fine for several…
jjazzboss
  • 1,261
  • 8
  • 14
0
votes
1 answer

How to dynamically change currency & pass other data in PayPal Express Checkout

I want to accept payment in Multiple currencies & also autofill the Address/Name in PayPal form using Express Checkout method I have tried going through various posts, paypal getting started, paypal community, but not able to find if it…
Shailesh
  • 79
  • 13
0
votes
1 answer

Paypal PDT Curl don't response

I have a code that gives me request error. If I use sandbox url it works fine, but on live URL it do not work. Could anyone tell why, please? $request = curl_init(); curl_setopt_array($request, array ( …
0
votes
1 answer

paypal PDT missing variables

I have an issue with PDT. after payment, when the page returns to the merchant, from paypal, I do the request with the pdt token to get the info on the transaction. Normally I get these parameters from paypal, in the case of a recurring sale: …
0
votes
1 answer

PayPal, how can I know about user doing after click pay?

I'm developing a site and it has a problem. I'm trying to add PayPal to my site, but I've encountered a problem. I use ipn and pdt, but that does not solve my problem. What's the problem? When a user clicks "PayPal button" in my site, he is…
vichen
  • 1
  • 1
0
votes
0 answers

Auto redirect not working so PDT response is not coming for paypal rails

I am sending $10 from my sandbox paypal account(with fake visa card) to my live paypal account. Once I pay the auto direct (auto return) is not working. Is there any issue because of the sandbox account? Here is the parameters that I am sending on…
Param
  • 31
  • 5
0
votes
1 answer

PayPal item_name passed to IPN and PDP as “Shopping Cart”

From around 10th August ‘17 my IPN and PDT PHP programs are now both passed an item_name of Shopping Cart intermittently (perhaps one in ten transactions) even though the item name is hardcoded in my 'PayPal Standard HTML' interface (i.e. the user…
decomplexity
  • 343
  • 2
  • 4
  • 13
0
votes
0 answers

Getting order data paypal not working

I worked with Paypal multiple time. I create a button, redirect to proceed.php?order=order on success, and in proceed.php check if gross amount and payee email match database information. My code always look like : if ($_POST['payer_email'] &&…
btc4cash
  • 375
  • 1
  • 4
  • 15