paypal-adaptive-payments

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

Paypal payflow link setup no “PayPal Express Checkout” feildset

耗尽温柔 提交于 2019-12-10 20:41:46
问题 I'm trying to learn and setup embedded payments. I'm following the tutorial at : https://www.youtube.com/watch?v=qyiv3ndRcZI In part of that tutorial in paypal manager there is an "PayPal Express Checkout" feildset where you can set a live account email and sandbox account email. When I login to my manager I do not have this feildset to enter this information. It's not there at all. any ideas on what I'm doing wrong or what I have to do to get the Express Checkout fieldset to show up? The end

Paypal CREATE type

*爱你&永不变心* 提交于 2019-12-10 11:38:56
问题 Here's an extended example flow that should work in the live environment: Send Pay request with actionType=CREATE Send SetPaymentOptions request using the returned payKey Redirect the user to approve the payment Receive IPN Send PaymentDetails request using the returned payKey Send GetPaymentOptions request using the returned payKey Send ExecutePayment request using the returned payKey Everything works fine, till the last step. Somehow Payment is set to COMPLETED state as soon as the user

PayPal Personal Payments in Live mode

三世轮回 提交于 2019-12-10 10:35:51
问题 our website works very well in Sandbox. We are using Adaptive Payments to implement Personal Payments (directly from one person to other), and now we want to test our functions in Live mode. But when we read the Application Policies to go Live (https://www.x.com/developers/paypal/documentation-tools/paypal-application-policies-and-guidelines) we surprised to find next: PayPal - Application Policies The Merchant/Seller of Record must be the primary recipient for every PayPal transaction made

PayPal Adaptive payments error You do not have permission to execute this payment implicitly

谁说胖子不能爱 提交于 2019-12-10 05:32:09
问题 I have a simple app that sends payments. The app works fine in sandbox. Live classic app app ID is already approved (shows as "Approved Automatically"), but when I enter my live credentials it returns the error "You do not have permission to execute this payment implicitly" Sending XML to endpoint https://svcs.paypal.com/AdaptivePayments/Pay : I'm sending it using my live API key, and live account credentials: applicationId = my live app ID (already approved) X-PAYPAL-SECURITY-USERID = my

Validate an email is linked to a valid PayPal account

☆樱花仙子☆ 提交于 2019-12-08 12:24:03
问题 Is there an ability to verify if the the user has a valid email address linked to the PayPal account and also if possible to check if this account has Grant API permission (toward my account) to process Refund API? Profile to refund is Payment profile is created through AdaptivePayment Pay API call. I was wondering if this is possible through an API call? Thanks 回答1: You can use PayPal GetVerifiedStatus API Operation will check for the verified status of the paypal account. You can also use

PayPal API - discount?

。_饼干妹妹 提交于 2019-12-08 11:08:46
问题 I'm trying to get a discount to apply to a shopping cart I've written. I'm using the Adaptive API system, but I can't seem to get it right. I've tried it in the SetPaymentOptions call: 'receiverOptions' => [ { 'receiver' => { 'email' => 'foo@live.co.uk' }, 'invoiceData' => { 'totalShipping' => '8.00', 'totalTax' => 0, 'item' => [ { 'itemPrice' => '15.00', 'name' => 'Alice in Wonderland Mechanism Necklace', 'price' => '15', 'itemCount' => 1 }, { 'itemPrice' => '30.00', 'name' => '110 Year Old

How to refund partial refund in paypal adaptive payment chain method

纵然是瞬间 提交于 2019-12-08 04:55:54
问题 I am working on paypal adaptive payment & i need to refund with API , i am able to refund sucessfuly in case of parrralel payment but getting problem in chain payment eg- buyer/sender made total payment of $200 at time of payment receiver1 = $90 receiver2 = $90 receiver(primary) = $20 when i process refund 0f $10 from each receivers from API ,API return status COMPLETED for each reciver, primary receiver get refund of $10 & $10 from secondary receivers , but buyer get refund of only $10. API

Paypal Sandbox is not working for Non-US developers using Paypal iOS SDK

*爱你&永不变心* 提交于 2019-12-08 03:10:20
问题 In my iOS app , I have integrated the adaptive payment using paypal sdk from https://www.x.com/developers/paypal/documentation-tools/paypal-sdk-index After paypal changed their site , I am not able to perform transaction using above library. Here is my code -(void)processSplitPaymentWithFacebuyAdminPayPalId:(NSString*)adminId sellerPayPalId:(NSString*)sellerId withAdminPercentage:(NSNumber*)adminPercentage forTotalAmount:(NSNumber*)totalAmount andShippingCharges:(NSNumber*)shippingCharges {

PayPal Plus Sandbox - Pay upon Invoice

橙三吉。 提交于 2019-12-08 01:59:36
问题 I'm integrating PayPal Plus, successfully on my site, except "Pay upon Invoice". Here's my JavaScript code for integrating the payment wall: <script src="https://www.paypalobjects.com/webstatic/ppplus/ppplus.min.js" type="text/javascript"></script> <script type="application/javascript"> var ppp = PAYPAL.apps.PPP({ "approvalUrl": "<?= $createPaymentArr['links'][1]['href']; ?>", "placeholder": "ppplus", "language": "de_DE", "mode": "sandbox", "showPuiOnSandbox": "true", "country": "DE" }); <