paypal

PayPal: Choosing multiple items with quantities

吃可爱长大的小学妹 提交于 2019-12-25 02:55:12
问题 I have made a PayPal form where I wish to sell multiple items and quantities (see screenshot). However when I use the code similar to the one written below I get a error if some of the items haven't been selected (quantity=0). The error says "A quantity value must be an integer greater than or equal to one." But I can't figure out how I could make the form behave like I want if I can't have some items with the quantity of 0. Does anyone have a solution that fits my needs? I wouldn't like to

Is paypal REST API stable and out of beta?

瘦欲@ 提交于 2019-12-25 02:53:08
问题 I have looked at the Paypal REST API and at classic API. I like the Direct card processing support the REST API offers and the ability to use the Vault from the REST API. Only problem is our PayPal sales rep insists the REST APIs are not stable and should not be used and wants us to use PayPal payments Pro with this Class API . We have a business account and only expect to receive payments in the US, which per this link should be supported just fine. We need to accept payments using a mobile

PayPal Express Checkout useraction and paymenttype parameters in SDK

拟墨画扇 提交于 2019-12-25 02:47:36
问题 I'm using both the merchant .net SDK and the payflow .net sdk. The documentation talks about being able to set a "useraction" property to "commit". I can't figure out how to set that property in either of the SDKs. Also... The payflow SDK allows me to set PaymentType to "instantonly". ECSetRequest setRequest = new ECSetRequest(); setRequest.PaymentType = "instantonly"; The merchant SDK allows me to do the following. PaymentDetailsType paymentDetails = new PaymentDetailsType(); paymentDetails

PayPal Instant Payment Notification Warning

牧云@^-^@ 提交于 2019-12-25 02:34:35
问题 We always get this message from paypal. The payments are going in and the url in the message is correct. Is there a way to stop these messages? >Please check your server that handles PayPal Instant Payment >Notifications (IPN). IPNs sent to the following URL(s) are failing: > >http://sitename.com/payment/postbackPaypalSignUp/ > >If you do not recognize this URL, you may be using a service provider >that is using IPN on your behalf. Please contact your service provider >with the above

The safer way to encrypt

南楼画角 提交于 2019-12-25 02:29:32
问题 Related to my last question i have a new one. What is a safer way to send encrypted data via https. using signAndEncrypt function with openssl_pkcs7_encrypt and send return array via form element... $encryptedData = "-----BEGIN PKCS7-----" . str_replace("\n", "", <br/> $encryptedDataReturn['encrypted_data']) ."-----END PKCS7-----"; $encryptedRequest=<<<PPHTML <html> <header> </header> <body onload="document.getElementById('paypal_form').submit();"> <br/><br/><br/><br/> <center> <h2>Please

Paypal IPN Validation - Doesn't work despite success page being reached

北城以北 提交于 2019-12-25 02:21:57
问题 I've been bashing my head against a brick wall the last few days on minor problems. This time I am on the final piece to the puzzle. In my php function of a wordpress cart plugin I have the following: Relevant Function - http://codepad.org/uDm3q9yp Paypal Class - http://codepad.org/friBthoO I manage to go through the purchase fine. If I check on the sandbox account the seller receives the correct email from paypal and money etc. The case "IPN" in the function doesn't seem to work however. No

Paypal pro configuration issues in Opecart

試著忘記壹切 提交于 2019-12-25 01:55:35
问题 I am develop site with Opencart . Integrate PayPal Website Payment Pro with test mode . Select Test Mode yes in admin panel. But in front side when i go for payment and enter visa card number and other stuff and click confirm payment then display error This transaction cannot be processed due to an invalid merchant configuration. I follow below steps: Log out Paypal account clearing browser cache and cookies (I use firefox). Go to developer.paypal.com and login with the real paypal account

Send an e-mail to PayPal buyer

强颜欢笑 提交于 2019-12-25 01:49:10
问题 I'm introducing PayPal Digital Goods for Express Checkout on a web site. For an user who is logged in, a valid checkout results in an update in the user's profile on the website, which in order allows to access more content. The owner wants to add support for clients which aren't yet logged in to the web site. We handled this by introducing a landing page with an unique URL, which the user is redirected to after payment and which can be used to create a new account or mark an existing account

Paypal iphone integration error

橙三吉。 提交于 2019-12-25 01:36:28
问题 [PayPal initializeWithAppID:@"APP-80W284485P519543T" forEnvironment:ENV_SANDBOX]; UIButton *button = [[PayPal getInstance] getPayButtonWithTarget:self andAction:@selector(payWithPayPal) andButtonType:BUTTON_278x43]; Any one of line, If I am writting in my application's viewDidLoad or appDidFinishLauch, then it works fine on simulator, but while I do run it on iOS5 (iPod Touch) it gives the following error, and goes hang or crash... Program received signal: “EXC_BAD_ACCESS”. warning: check

PAYPAL Express Checkout REST API, Payment status is pending instead of completed

给你一囗甜甜゛ 提交于 2019-12-25 01:00:40
问题 I've a problem with the Express Checkout REST API : after that the user has approuved the transaction with the paypal form, I call the "execute" method by passing the payment attributs (token, id, payerId,...). In the returned data, the status of the payment is indicated as "approved". My trouble is that although the payment is well present of the activity list of the sandbox acount that i use for my tests, it still labelised as "pending". I've tried to use the REST API with the PHP SDK and