paypal

TLS connection handshake Failure

馋奶兔 提交于 2021-01-27 08:30:14
问题 We have difficulties to make https connections to the remote machines (like PayPal vb.) who disabled SSL3 protocol from our .Net application. We are getting following exception on GetResponse method of HttpWebRequest instance. The request was aborted: Could not create SSL/TLS secure channel. When we go depth and trace network logs with WireShark, we see that remote machine return the following error TLSv1.2 Alert (Level: Fatal, Description: Handshake Failure) Handshake Failure 40 More

Paypal SandBox IPN History

半城伤御伤魂 提交于 2021-01-20 19:12:55
问题 I use paypal for my payments. For verification i use IPN. Can i review my INP History in the Paypal Sandbox? At the documentation i see Instant Payment Notification History in the History tab. (https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_admin_IPNOperations) After googling i see "IPN History" chapter in the History tab (http://goo.gl/myZKF) At the real sandbox i don't see any IPN history. Thank you. 回答1: they hide it well: https://www.sandbox.paypal.com

PayPal Checkout: Is it safe to receive a payment with only client-side code?

不打扰是莪最后的温柔 提交于 2021-01-19 09:39:21
问题 I'm using the PayPal API to put payment options to my website. In the tutorial they have, they are rendering the button and setting up the transaction entirely at the client side with JavaScript. Here is the sample code: <script> paypal.Buttons({ createOrder: function(data, actions) { // This function sets up the details of the transaction, including the amount and line item details. return actions.order.create({ purchase_units: [{ amount: { value: '0.01' } }] }); }, onApprove: function(data,

PayPal Checkout: Is it safe to receive a payment with only client-side code?

有些话、适合烂在心里 提交于 2021-01-19 09:37:35
问题 I'm using the PayPal API to put payment options to my website. In the tutorial they have, they are rendering the button and setting up the transaction entirely at the client side with JavaScript. Here is the sample code: <script> paypal.Buttons({ createOrder: function(data, actions) { // This function sets up the details of the transaction, including the amount and line item details. return actions.order.create({ purchase_units: [{ amount: { value: '0.01' } }] }); }, onApprove: function(data,

PayPal Orders V2 not processing approve url

懵懂的女人 提交于 2021-01-07 02:49:58
问题 According to PayPal orders API as document here , We have to first create order then from the response, we have to copy the approve url and run in the browser. This will open PayPal page. There buyer will approve the request. After this a capture request should be made. Issue details I have following code that creates the order using PayPal API: $client = new \GuzzleHttp\Client(); $response = $client->request('POST', $uri, [ 'json' => [ "intent" => "CAPTURE", "purchase_units" => [ [ "amount"

Getting, storing, and refreshing PayPal access token in Laravel

江枫思渺然 提交于 2021-01-05 07:16:17
问题 I am currently using Omnipay's PayPal library in Laravel to interact with the PayPal API. Paypal requires an application to use its client id and secret to retrieve an access token. I've stored the client id and secret in ENV variables. I'm trying to figure out 2 things: Does Omnipay manage access tokens? If so, is there documentation on how that works? If not, I would like to form the below curl example in PHP so I can function to run either on a cron or on a trigger Documentation on PayPal

Not getting a confirmation email in Paypal sandbox

允我心安 提交于 2021-01-02 22:12:36
问题 I have set up several buyer account in the sandbox and made purchases through my website. The purchases are "pending" because the test account email aren't confirmed through Paypal. I've gone to my test account Notifications but there doesn't seem to be a way to confirm these accounts. All I get are emails like this: We're sending you a new PayPal payment card Hello Paula Hatchling, We're sending you a new PayPal payment card. We'll mail it to: 1 Main StSan Jose, CA 95131US When it arrives,

Not getting a confirmation email in Paypal sandbox

萝らか妹 提交于 2021-01-02 22:08:47
问题 I have set up several buyer account in the sandbox and made purchases through my website. The purchases are "pending" because the test account email aren't confirmed through Paypal. I've gone to my test account Notifications but there doesn't seem to be a way to confirm these accounts. All I get are emails like this: We're sending you a new PayPal payment card Hello Paula Hatchling, We're sending you a new PayPal payment card. We'll mail it to: 1 Main StSan Jose, CA 95131US When it arrives,

i'm Trying to make react paypal button that change the billing amount on props change

孤人 提交于 2020-12-27 06:12:01
问题 i'm Trying to make react paypal button that changes the billing amount on props change. I call the following component with props price and everytime the price change i would like to rerender the button to update the actual price. const PaypalForm = props => { let paypalRef = useRef(); useEffect(() => { window.paypal .Buttons({ createOrder: (data, actions) => { return actions.order.create({ purchase_units: [ { description: "test", amount: { currency_code: "USD", value: props.price } } ] }); }

i'm Trying to make react paypal button that change the billing amount on props change

那年仲夏 提交于 2020-12-27 06:10:22
问题 i'm Trying to make react paypal button that changes the billing amount on props change. I call the following component with props price and everytime the price change i would like to rerender the button to update the actual price. const PaypalForm = props => { let paypalRef = useRef(); useEffect(() => { window.paypal .Buttons({ createOrder: (data, actions) => { return actions.order.create({ purchase_units: [ { description: "test", amount: { currency_code: "USD", value: props.price } } ] }); }