paypal

NSS: client certificate not found (nickname not specified)

六月ゝ 毕业季﹏ 提交于 2019-12-21 10:05:37
问题 Working with the Paypal API, yes i've checked my config files, yes i've checked username and password.... i'm outa ideas. I'm using the ExpressCheckout API downloaded from and everytime i try call the setExpressCheckout method i get the following error: NSS: client certificate not found (nickname not specified) I know it's something to do with an SSL error, how do i go about solving the problem? 回答1: On August 3 and August 5 PayPal renewed the SSL certificates for the following API endpoints:

Can we use in-app purchase in enterprise apps for iOS?

家住魔仙堡 提交于 2019-12-21 07:26:09
问题 Can we use in- App purchase in an iOS App distributed as a enterprise app? If not possible can we use paypal or any other purchasing mechanism for that?Does Apple create any problem here as they did for Kindle App using payment other than their one? 回答1: If you're not going to publish the application in the AppStore, you can use any purchasing mechanism that you want. 回答2: Since the Enterprise license doesn't cover App Store integration, your bundle ID isn't registered and approved with Apple

Can't get PayPal Encrypted Website Payments to work in Rails

北城以北 提交于 2019-12-21 04:57:08
问题 I am having problems getting PayPal Encrypted Website payments to work on a Rails site. I am getting two different error messages when posting to the PayPal URL - on my staging site, which uses the sandbox, I am getting: The certificate has been removed. Please use a valid certificate. Whereas on the production site, I get: We were unable to decrypt the certificate id. As far as I can tell they are set up identically, except that one uses the PayPal Sandbox public key, and the other uses the

Difference Between paypal parallel payments and chained payments

邮差的信 提交于 2019-12-21 04:56:08
问题 I need to implement a payment gateway by which a user will pay to two sellers in one transaction. So i tried two options of paypal Paypal Parallel Payments Paypal Chained Payments Although both are fulfilling my needs perfectly but i am curious to know that which one would be better for my need and the difference between both the methods I would also like to have the suggestion on implementing doCapture method of paypal along with chained/parallel payment. Thank You 回答1: AFAIK Parallel

API differences between Paypal Express Checkout and Website Payment Standard

£可爱£侵袭症+ 提交于 2019-12-21 04:10:12
问题 I'm trying to understand the API differences between Paypal's Express Checkout and Website Payment Standard. I know the user-facing differences (Express Checkout forces you to have a Paypal account, while Website Payment Standard also processes credit cards), but I don't know the differences between how you can interface with them programmatically, specifically from a Rails app. Active Merchant says that it supports Express Checkout but doesn't mention Website Payment Standard. For recurring

PayPal API with Laravel - Updating of data

我是研究僧i 提交于 2019-12-21 03:57:20
问题 I'm trying to implement the API of PayPal payment with Laravel 5.1 . But when I log in to PayPal (sandbox) , it uses the address I used in my account, and also it uses the name from PayPal account not the data from my website. That's my problem. I want to use the data from my website because it doesn't make sense if I enter the shipping address (for example) from my website and not using it. Please see my code below for reference (Or comment down below for some details from me). class

Paypal Sandbox Do Direct Payment Internal Error 10001 Timeout Processing Request

自作多情 提交于 2019-12-21 03:57:07
问题 This is in an MVC2 project, so I'm using C# in ASP. This is what I'm sending to https://api-3t.sandbox.paypal.com/nvp: VERSION = 65.0 SIGNATURE = AFcWxV21C7fd0v3bYYYRCpSSRl31AxdW2pQp.tWHTjGNcHflR-LJhJ0t USER = seller_1283487740_biz_api1.gmail.com PWD = 1283487748 AMOUNT = 50.00 CREDITCARDTYPE = Visa ACCT = 4031477440127509 EXPDATE = 12/2015 CVV2 =123 IPADDRESS = 127.0.0.1 METHOD = DoDirectPayment I can GetBalance, I can produce other errors when I intentionally send something wrong, but

PayPal Rest API - Update Billing Plan Return URL

三世轮回 提交于 2019-12-21 03:27:43
问题 I have been using the PayPal Rest API and have successfully created and activated a BillingPlan but I'm having trouble updating said plan's return_url . I think it's something to do with the JSON path I'm using although I'm not sure why!? Anyway, I am calling the update plan method: https://developer.paypal.com/docs/api/#update-a-plan A BillingPlan follows the format: { "id": "P-94458432VR012762KRWBZEUA", "state": "ACTIVE", "name": "T-Shirt of the Month Club Plan", "description": "Template

PayPal lightbox won't open in iPhone safari/web app; 'win.location' undefined

前提是你 提交于 2019-12-21 02:58:10
问题 (works fine in Chrome on the iPhone ) I get this error: TypeError: 'undefined' is not an object (evaluating 'win.location') in dg.js line 3 And the lightbox does not open. The code in question inside PayPal's dg.js is: startFlow: function (url) { var win = that._render(); if (win.location) { win.location = url; } else { win.src = url; } } So does mobile Safari not understand that._render() ? How do I get around this? If it matters, I'm using Adaptive Payments , calling it like so: var dg =

Authorize/Capture for PayPal

时光毁灭记忆、已成空白 提交于 2019-12-21 02:56:13
问题 Using PayPal IPN, can we implement delayed payment. Perfect example is Groupon where card is charged only when deal is tipped. Can someone throw light on implementation part using PayPal IPN and also how multiple cards can be charged at once when deal is tipped. 回答1: For Authorize And Capture: To make a payment authorize you will have to pass "authorization" in paymentmethod parameter instead of "sale" <input type="hidden" name="paymentaction" value="authorization" /> So, For this type of