Created
July 18, 2023 08:50
-
-
Save Debcharon/9560148e9b09916d87fd7498e654db44 to your computer and use it in GitHub Desktop.
paypal onetime subscription button for 1 USD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="smart-button-container"> | |
<div style="text-align: center;"> | |
<div id="paypal-button-container"></div> | |
</div> | |
</div> | |
<script src="https://www.paypal.com/sdk/js?client-id={client_id}&enable-funding=venmo¤cy=USD" data-sdk-integration-source="button-factory"></script> | |
<script> | |
function initPayPalButton() { | |
paypal.Buttons({ | |
style: { | |
shape: 'rect', | |
color: 'black', | |
layout: 'vertical', | |
label: 'donate', | |
}, | |
createOrder: function(data, actions) { | |
return actions.order.create({ | |
purchase_units: [{"amount":{"currency_code":"USD","value":1,"breakdown":{"item_total":{"currency_code":"USD","value":1}}},"items":[{"name":"item name","unit_amount":{"currency_code":"USD","value":1},"quantity":"1","category":"DONATION"}]}] | |
}); | |
}, | |
onApprove: function(data, actions) { | |
return actions.order.capture().then(function(orderData) { | |
// Full available details | |
console.log('Capture result', orderData, JSON.stringify(orderData, null, 2)); | |
// Show a success message within this page, e.g. | |
const element = document.getElementById('paypal-button-container'); | |
element.innerHTML = ''; | |
element.innerHTML = '<h3>Thank you for your payment!</h3>'; | |
// Or go to another URL: actions.redirect('thank_you.html'); | |
}); | |
}, | |
onError: function(err) { | |
console.log(err); | |
} | |
}).render('#paypal-button-container'); | |
} | |
initPayPalButton(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment