Meteor: Paypal Express Checkout integration - express

I'd like to implement Paypal Checkout Express in my webapp but have no solid findings. I've found a few meteor PayPal packages but it seems like they are paying using credit cards through PayPal, instead of using their PayPal account (I might be wrong here), so that's why I'm requesting for the checkout express. If anyone has any experience or knowledge, please do tell!
Thanks a lot!

Have you looked at this package?
https://atmospherejs.com/reactioncommerce/reaction-paypal

Related

Implementing shopify with braintree android

Has anyone implemented shopify with Braintree , i know you have to enable it in shopify account , and you have an option to make a checkout on google chrome , but has anyone done it inside app ?
Any help is really appreciated
Thanks
It can be done using webview(open the particular link).The shopify does not provide the SDK for that....

Paypal In-Context guest checkout

Is it possible to use paypal in-context checkout with guest checkout?
So the problem is that i don't see a button in popup dialog "debit or credit card checkout" currently i am testing this in sandbox. The option allow checkout as guest is enabled in the sandbox merchant account.
I have a working copy of "In Context" Express Checkout and guest checkout functions as intended in the sandbox environment. Be sure you are passing "SOLUTIONTYPE=Sole" in your SetExpressCheckout API call.
Thanks, but i am using the PHP SDK http://paypal.github.io/PayPal-PHP-SDK/ there is no such option. It seems it is not available in REST API. Is there a solution or a workaround for this?

How to integrate New Payment Gateway into [NopCommerce 3.10], If plugins not available?

Want to know what is the process for custom payment gateway integration with NopCommerce. If my payment gateway plugins not available ?
How to make a NopCommerce plugins for another payment gateway ? Which I required to integrate with my store .
What are the changes I need to be made, to integrate, new payment gateway ? into NopCommerce ?
nopCommerce documentation have good guides on this. Here is how you create a plugin. And here is how to write the payment method.
nopCommerce source code comes with a few payment plugins (i.e AuthorizeNET, PayPal, Google Checkout). Those are great real world examples to look at.
Good luck!

billmelater integration / api documentation? sandbox account?

I would like to find the Paypal BillMeLater documentation. I've looked over the developer site many times and searched all over Google; where might it be?
Also - where can I create a sandbox account for testing payments processed via BillMeLater?
To be clear, I would like to integrate BillMeLater so that a user is not redirected away from the site, but can still use this method to pay.
This is not currently possible; BillMeLater can only be used via the paypal site (eg: through express checkout)

PayPal MassPay and AddressVerify: Which SDK do I use?

I'm getting some rather conflicting information from PayPal. I've spent 2 hours on the phone with them today, and posted my questions on their forums, and I have not received one single solution. So I am turning to SO since people here actually know what they're doing.
I am trying to add the AddressVerify and MassPay APIs to our website. We are currently using the Payflow Pro (DirectPayment, etc) calls with no problems. This uses our PayPal Manager login, password and vendor credentials for authentication via the HTTPS interface. This is all written in PHP using NVP.
However, when I try to add the AddressVerify and/or the MassPay APIs using the HTTPS interface, all I get back is a PNREF and an error saying, "Invalid Tender."
On the forums, I see everyone using email addresses as logins, and a certificate key of some sort. I called PayPal today to figure out how the heck to get that information, and the developer there said I don't use the login with the key and that I'm using the wrong SDK. He told me where to get the Dev Guide and that I should use that instead.
However, the dev guide only outlines what we're already using, and I wasn't about to sit on the phone for another hour and 40 minutes.
So my question is this:
Am I just missing something, or did I just get some bad information? I'm guessing it's the latter, because nobody there seemed to know squat about jack diddly.
Am I correct in assuming that the code ( as outlined here ) is what I should be using? If so, how do I obtain a signature key and presumably a new login & password?
If the dev guy from PayPal is correct and I should be using the HTTPS Interface, then how do I get that to work? Because like I said above, all I'm getting from that is a PNREF and an error message saying, "Invalid Tender."
If anyone has any experience with this and/or some suggestions on how to get this stupid thing to work, I'd be forever greatful!
Thanks in advance!
Brian
In case anybody is interested in knowing, I received a response from the devs at PayPal:
If you are using Payflow then you should be using the Payflow Pro SDK, it would require a User, Vendor, Partner, and Password in the credentials that get passed over. It would also return a PNREF number. If you are wanting to use Website Payments Pro, then your SDK would have either a API Username, API Password, API Signature, or an API Username, API Password,and API Certificate. The AddressVerfiy API is an API that is available for Website Payments Pro/PayPal accounts not Payflow. You can find all of the SDK's for both services here. The Payflow SDK's are the ones at the bottom of the page.
So apparently MassPay and AddressVerify is part of the Web Payments Pro, which uses a different SDK than the Payflow Pro stuff. And for this, you need to obtain a separate username, password, and certificate or key. The Payflow Pro credentials will not work with this.
Hope someone else can benefit from my hours of wasted time!