paypal-sandbox

Can I create a Billing Agreement with credit card (without paypal account)

跟風遠走 提交于 2019-12-11 08:13:15
问题 As per the subject. Does my customer MUST to have paypal account and login to his paypal account in order for me to create a billing agreement, or I can use credit card as payment method for a billing agreement? I am working with REST Api Thanks 回答1: It is possible. An example of the API is here: https://github.com/paypal/PayPal-NET-SDK/blob/develop/Samples/Source/BillingAgreementWithCreditCard.aspx.cs Subscriptions (recurring payments) option for direct payments needs to be also enabled in

Not able to store credit card in Paypal using “v1/vault/credit-cards”

本小妞迷上赌 提交于 2019-12-11 08:03:58
问题 I am using Paypal vault for one of my application. I need to stored Credit Card into vault. I used the paypal vault api ( v1/vault/credit-cards ) for it. But It always returns 500. I also tried with actual Credit card, but didn't get positive reponse. I am able to get access token and also get success response in listing service. But not able to stored card. Below is my code: Request Para: NSMutableDictionary *dicCC = [[NSMutableDictionary alloc]init]; dicCC[@"payer_id"] = @"123345"; dicCC[@

Unable to integrated react-paypal-button-v2 in react app

穿精又带淫゛_ 提交于 2019-12-11 07:14:13
问题 I am trying to integrate [react-paypal-button-v2][1] in my react app but after filling the details it is showing Something went wrong <PayPalButton amount="0.01" onSuccess={(details, data) => { console.log(details,"data") alert("Transaction completed by " + details.payer.name.given_name); // OPTIONAL: Call your server to save the transaction // return fetch("/paypal-transaction-complete", { // method: "post", // body: JSON.stringify({ // orderID: data.orderID // }) // }); }} catchError={(err)

Logout Paypal Express account after payment is completed

别等时光非礼了梦想. 提交于 2019-12-11 04:49:11
问题 I want to logout paypal account when the payment is completed in Paypal. retun url in expresscheckout takes to website and payment is done .But Paypal account still not logout. How do i acheve this ? Just try this with your Paypal account. If you forgot to log out from your Paypal account after finishing using it and just close the window without log off from the computer you were using. Then, next person using the same computer can simply enter your Paypal account and do whatever they want!

Does PayPal support the Dirham? [closed]

一曲冷凌霜 提交于 2019-12-11 03:55:03
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I am setting up my PayPal, but the currency I need is not on the pull down list. I live in Dubai and the currency is United Arab Emirates, Dirham (AED). Is there a add-on I need or an "other" option available? anyone know the way how to add AED to Paypal. 回答1: As per their site they do not support your currency.

PayPal REST API issue in PPModel.php on line 51

空扰寡人 提交于 2019-12-11 03:12:01
问题 Whenever I try to create payment on paypal using create.php, it gives me this error Fatal error: Class 'string' not found in public_html/demos/demo_files/integrate-paypal-rest-api-php-mysql/vendor/paypal/sdk-core-php/lib/PayPal/Common/PPModel.php on line 51 I am not able to find any help regarding it anywhere. PPModel.php is part of PHP SDK by PayPal. PPModel.php can be found here The script works fine on localhost, but on webhosting server it gives following Fatal error. Update I was able to

Issues in PayPal live transaction via PayPal iOS SDK

此生再无相见时 提交于 2019-12-11 02:57:33
问题 I am developing an iOS application for iPad, version 7.x. We Need to perform PayPal transaction via the application. We included PayPal iOS SDK and referring their sample code to perform the transaction. The sample code is placed here There are enough funds in the customer account Also, we have proper Client ID and secret key where funds needs to be transferred. Both payee and payer have live accounts. Transaction via their Sandbox account was sucess Upon debugging the code, we found that we

The remote name could not be resolved: 'api-3t.sandbox.paypal.com'

匆匆过客 提交于 2019-12-11 02:53:35
问题 I am using paypal NVP api in an ecommerce website. It was working fine before but now it is throwing "System.Net.WebException: The remote name could not be resolved: 'api-3t.sandbox.paypal.com'" Exception. I also tried api.sandbox.paypal.com but no luck. Any ideas? Thanks Update : Same codes works if my client runs it from his system. 回答1: This is a DNS problem, or at least, that's what the exception points to. The machine that is running your code, and failing, is not able to resolve the

PayPal HTML buttons broken for large shopping carts on new PayPal checkout

我的未来我决定 提交于 2019-12-11 02:11:52
问题 Been battling for weeks with a PayPal Payment Standard FORM problem. We have been running the same code for many years but noticed our larger invoices (with over 20 items) on them were hitting a white screen of death recently when submitting to PayPal. Testing in the Sandbox worked just fine as before. After searching everywhere I couldn't find anyone else with this exact problem but noticed if we took the invoice down from say 60 items to 7 items then the invoices seemed to go thru ok. Seems

Paypal Rest API SDK v2

谁都会走 提交于 2019-12-11 01:38:40
问题 Paypal recommends using their v2 version of the rest API for Orders and Payments processing. Their documentation is written as per the v2 APIs. The SDK for V2 APIs is called Checkout SDK: https://github.com/paypal/Checkout-Java-SDK I need to integrate both normal and recurring payments via Paypal. It seems that the Checkout SDK does not support recurring payments APIs(CreatePlan and CreateBillingAgreement). Do I need to include both v1(Rest API SDK) and v2(Checkout SDK) for the same if I need