-
Notifications
You must be signed in to change notification settings - Fork 34
Home
naholyr edited this page Nov 12, 2014
·
4 revisions
<script src="https://www.paypal.com/sdk/js?client-id=AZxazWBwZ_hrnmFeEl3_1t78d8ZYo2nHpWAucUdvTq_9OuPEksNkYo6aPi5whs8ihh0fdyMXMWQ6tXUr&vault=true&intent=subscription" data-sdk-integration-source="button-factory"></script>
<script>
paypal.Buttons({
style: {
shape: 'rect',
color: 'blue',
layout: 'vertical',
label: 'subscribe'
},
createSubscription: function(data, actions) {
return actions.subscription.create({
/* Creates the subscription */
plan_id: 'P-1VW26017YK022053CNAZIOHA',
quantity: 1 // The quantity of the product for a subscription
});
},
onApprove: function(data, actions) {
alert(data.subscriptionID); // You can add optional success message for the subscriber here
}
}).render('#paypal-button-container-P-1VW26017YK022053CNAZIOHA'); // Renders the PayPal button
</script>