paypal-sandbox

New PayPal iOS SDK (beta) - Can't connect to sandbox

梦想的初衷 提交于 2020-01-14 14:39:07
问题 I've integrated the new PayPal iOS SDK into my app. Reference can be found here. The new SDK is really easy to set up and it allows you to work in 3 different environments 1.) PayPalEnvrionmentNoNetwork 2.) PayPalEnvironmentSandBox and 3) No environment meaning to go onto their live servers. Everything works for the NoNetwork Environment, obviously because it uses mock dummy data, not having to access any servers. When I try to switch to the SandBox environment, PayPal can't connect to the

Credit Card Options in Paypal Express Checkout

青春壹個敷衍的年華 提交于 2020-01-14 03:01:06
问题 I have setup the express checkout process integration in asp.net mvc. When user is redirected to paypal website after submission, there is only option to login using paypal or sign up new account. There is no option to pay using credit card ? Am i using right API for this? 回答1: By default Express Checkout is for PayPal accountholder payments; originally you would pair this with some other product for credit card payments (such as collecting the card information on your site and calling PayPal

Paypal Express checkout + php cURL Execute payment not show payment notification on sandbox

放肆的年华 提交于 2020-01-13 19:14:26
问题 i'm testing paypal integration, in a php demo test on my apache server with a vhost -> test.it/paypal. I use Express Checkout + Server-side REST (cURL). My js Add the PayPal button is: <script> var CREATE_PAYMENT_URL = 'http://test.it/paypal/create-payment.php'; var EXECUTE_PAYMENT_URL = 'http://test.it/paypal/execute-payment.php'; paypal.Button.render({ env: 'sandbox', // Or 'production', commit: true, // Show a 'Pay Now' button locale: 'it_IT', style: { size: 'small', color: 'blue', shape:

Setting PayPal return URL to localhost

懵懂的女人 提交于 2020-01-13 08:33:49
问题 I'm trying to integrate Paypal and I'm using sandbox in the process. I follow the step of the accepted answer in the below question. Setting PayPal return URL and making it auto return? But when I try to enter the URL, Paypal return the below error. We were unable to validate the URL you have entered. Please check your entry and try again. URL I'm trying to set is http://localhost:8888/paypal/success.php . Also I tried sending the return url with the form as below. <input type="hidden" name=

Paypal Developer/Sandbox new interface: cannot login with test accounts

五迷三道 提交于 2020-01-10 12:02:10
问题 I'm having problems on sandbox.paypal.com login with my test accounts since they've changed the interface. I was forced to create a new account on developer.paypal.com (which is now a beta) and import my old test accounts. I've done that but none of the accounts work anymore! I cannot login the sandbox with my merchant account and purchases aren't working. Anyone has the same problem? 回答1: Once you validate and log in using your PayPal credentials, you can import your individual sandbox

Paypal Developer/Sandbox new interface: cannot login with test accounts

纵然是瞬间 提交于 2020-01-10 11:59:09
问题 I'm having problems on sandbox.paypal.com login with my test accounts since they've changed the interface. I was forced to create a new account on developer.paypal.com (which is now a beta) and import my old test accounts. I've done that but none of the accounts work anymore! I cannot login the sandbox with my merchant account and purchases aren't working. Anyone has the same problem? 回答1: Once you validate and log in using your PayPal credentials, you can import your individual sandbox

How to pass the user enter amount value to the paypal

懵懂的女人 提交于 2020-01-07 04:23:51
问题 Hi am having an issue with a website I am writing in php.I am trying to get Paypal to accept a user enter amount.but it not accepting while redirecting to paypal the amount is blank.is this possible or not. This is my form <form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target=_blank> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="encrypted" value="<?PHP echo $encrypted; ?>"> <div class="paypal_list2"> <input type="hidden"><h3>Enter

com.paypal.core.rest.PayPalRESTException: Error code : 400

六眼飞鱼酱① 提交于 2020-01-07 03:03:33
问题 Am implementing the paypal-rest-api call using scala. Am having the working example in java. But getting "Unknown error" from paypal sandbox api, when implementing the same in scala. Here is the code. class DirectPayment { def pay(): Unit = { val payment = new Payment val accessToken = AccessTokenGenerator.getAccessToken() val apiContext = new APIContext(accessToken) try { val amount = new Amount amount.setCurrency("USD") amount.setTotal("12") val transaction = new Transaction transaction

Utilizing “Send Money to Friends and Family” functionality via our app

夙愿已清 提交于 2020-01-05 04:31:10
问题 Our app needs to utilize the functionality "send money to friends and family". Now we can perform PERSONAL payments using AdaptivePayments without any fee (as expected) but this type of transaction seems to be purchasing transaction rather than "send money to family and friends" transaction. Looking at the payment details instead of seeing the information which is related to "send money to friends and family" type of transfers we see the following details: "Payment/Payment received" instead

PayPal Item Name/Description on separate lines using forms

萝らか妹 提交于 2020-01-04 09:08:29
问题 I am processing a simple form to PayPal's Express Checkout using the basic standard free account and the standard form "_xclick" option. When passing through the item name or description, I understand you are limited to 144 characters but I want to have the information inside the title or the description on different lines to separate the information when on PayPals checkout area so the user can clearly see what they are paying for. I have tried to use "\r" and "\n" to seperate the lines, as