Skip to content

Latest commit

 

History

History
77 lines (61 loc) · 1.92 KB

README.md

File metadata and controls

77 lines (61 loc) · 1.92 KB

Polymer 2 wrapper for the Paypal Express Checkout button

Published on webcomponents.org

Button flow demo

Components

<paypal-button-express>

To work around paypals issue with ShadowDOM this element opens the paypal button in an embedded iframe and communicates via postMessage.

<paypal-button-express
  sandbox
  sandbox-id="my-id"
  amount="1.00"
  reference="your-payment-reference"
></paypal-button-express>

<paypal-button-form>

Using the (older) paypal form api, a robuster checkout can be accomplished. To get notified about payments you have to set notify to an IPN url on your site.

<paypal-button-form
  paypal-id="id@example.org"
  amount="1.00"
  reference="your-payment-reference"
></paypal-button-form>

Polymer build

To build include the paypal.html in your polymer.json.

"extraDependencies": [
  "bower_components/paypal-express-checkout/paypal.html"
]

Development

# Get dependencies
$ npm install

# Demo site
$ npm start

# Run tests
$ npm test