paypal

Paypal Access-Control-Allow-Origin

梦想的初衷 提交于 2020-01-06 04:12:08
问题 I'm trying to learn paypal payment. I have done a simple AngularJS application that use Paypal-Express-Checkout. As it says on the documentation, first of all I have to do the call SetExpressCheckout. $http.post("https://api-3t.sandbox.paypal.com/nvp", request) .success(function(data){ console.log(data); }).error(function(error){ console.log(error); }); In the object request there are all payment details. But when I run the script, the result of http call is: XMLHttpRequest cannot load https:

Paypal Payflow Link TLS 1.2 for post requests

徘徊边缘 提交于 2020-01-06 01:32:05
问题 After a recent upgrade to a new server, a web app that previously accepted a post request from PayPal's Payflow Link stopped working. After troubleshooting, our current guess is that the legacy Payflow Link, being an older product, is not using TLS 1.1 or TLS 1.2 thereby causing the SSL handshake to fail. Is there a way to tell Paypal flow to post our site with TLS 1.1 or TLS 1.2? Super thanks in advance, 回答1: We had a similar issue. A Magento (1.8) shop was moved from a CentOS 5 to CentOS 6

When ever I click on PayPal it show an alert “service Unavailable”

帅比萌擦擦* 提交于 2020-01-06 01:15:07
问题 I am using PayPal payment gate way when ever I click on my it shows alert and payment is not successful I have attached a ScreenShot please let me know what I did wrong. And my response is below Error: { category = Application; errorId = 503; message = "service unavailable"; severity = Error; } 来源: https://stackoverflow.com/questions/52809975/when-ever-i-click-on-paypal-it-show-an-alert-service-unavailable

Send money to any PayPal account and receive payment notification

╄→гoц情女王★ 提交于 2020-01-05 12:32:17
问题 We are developing a website where people can use our tools to fundraise for their organization or cause. I was wondering if with paypal IPN I can send money directly to the person's PayPal account doing the fundraising. For example. User John Doe signs up on our website Website.com. As part of the signup process John Doe enters his PayPal email address he accepts payments with. He now has the page Website.com/JohnDoe to accept payments/donations from. Using IPN & PayPal payments pro can I

Send money to any PayPal account and receive payment notification

老子叫甜甜 提交于 2020-01-05 12:32:12
问题 We are developing a website where people can use our tools to fundraise for their organization or cause. I was wondering if with paypal IPN I can send money directly to the person's PayPal account doing the fundraising. For example. User John Doe signs up on our website Website.com. As part of the signup process John Doe enters his PayPal email address he accepts payments with. He now has the page Website.com/JohnDoe to accept payments/donations from. Using IPN & PayPal payments pro can I

Getting result back of webview operation

狂风中的少年 提交于 2020-01-05 12:14:45
问题 I am implementing payment functionality in my application. For that, I am launching my website's payment page with new intent (startActivityForResult) on a click of a button from my application. Once the payment is succeed, I want that webview to be closed automatically and should get succeed of failed result back in calling activity. Is it possible and if yes, how can I achieve this? 回答1: I am not completely aware of your use case. If are are just trying to accept credit cards or accept

receive more response data in ci-merchant library codeigniter

喜欢而已 提交于 2020-01-05 12:02:57
问题 How can I receive more response data in the ci-merchant codeigniter library ? I am using the Paypal Express checkout payment method. And I am passing the following parameters: $params = array( 'amount' => 100.00, 'currency' => 'USD', 'return_url' => my return url, 'cancel_url' => my cancel url ); Right now am getting just the following response Merchant_paypal_api_response Object ( [_status:protected] => complete [_message:protected] => [_reference:protected] => 1K088384XU0947545 [_data

receive more response data in ci-merchant library codeigniter

流过昼夜 提交于 2020-01-05 12:02:27
问题 How can I receive more response data in the ci-merchant codeigniter library ? I am using the Paypal Express checkout payment method. And I am passing the following parameters: $params = array( 'amount' => 100.00, 'currency' => 'USD', 'return_url' => my return url, 'cancel_url' => my cancel url ); Right now am getting just the following response Merchant_paypal_api_response Object ( [_status:protected] => complete [_message:protected] => [_reference:protected] => 1K088384XU0947545 [_data

How to Verify Paypal Account via REST API

拈花ヽ惹草 提交于 2020-01-05 11:36:19
问题 In my iOS application i am using paypal, so, when user going through signup process i need to verify his paypal account is vaild or not. i am using the rest API but didn't see any API related to this. 回答1: Still there is no way in REST API's to check the validity of a PayPal account by just providing the email address and name .As of now it can only be done using "GetVerifiedStatus" classic API . https://developer.paypal.com/docs/classic/api/adaptive-accounts/GetVerifiedStatus_API_Operation/

Yet another Paypal Curl / SSL v3 Handshake Error - SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure

早过忘川 提交于 2020-01-05 08:52:42
问题 I know there are a number of people asking this question, but none of the solutions I've read to date have worked for me. A site with a Paypal IPN listener fails in the curl postback. Curl Error: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure My curl options look as follows: curl_setopt($ch, CURLOPT_URL, 'https://www.sandbox.paypal.com/cgi-bin/webscr'); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Host: www.sandbox.paypal.com')); curl_setopt($ch, CURLOPT_HTTP