Skip to content

Instantly share code, notes, and snippets.

@woloski
Last active October 1, 2020 15:46
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save woloski/c535a365efc753242935 to your computer and use it in GitHub Desktop.
Save woloski/c535a365efc753242935 to your computer and use it in GitHub Desktop.
Stripe Checkout + webtask
<button class="pay">Pay</button>
<script src="https://checkout.stripe.com/checkout.js">
<script>
var handler = StripeCheckout.configure({
key: window.STRIPE_PUBLICK_KEY,
image: 'https://yourlogo.png',
locale: 'auto',
token: function(token) {
$('.pay').prop("disabled", true);
$('.pay').text('Paying...')
$.ajax({
url: 'https://webtask.it.auth0.com/your-account/stripe',
type: 'POST',
data: {
stripeToken: token.id
}
}).then(function(stripeCustomer) {
console.log('success');
}).fail(function(e) {
$('.pay').text('Buy');
alert('There was an error processing the payment. Please try again.')
});
}
});
$(function() {
$('.pay').on('click', function(e) {
e.preventDefault();
handler.open({
name: 'Title',
description: 'My Subscription',
panelLabel: "Subscribe",
amount: 900, // 9 usd
email: 'default_email_if_you_have_it',
allowRememberMe: false
});
});
});
// close Checkout on page navigation
$(window).on('popstate', function() {
handler.close();
});
</script>
// wt create stripe-webtask.js --name stripe --secret STRIPE_PRIVATE_KEY=....
module.exports = function(ctx, callback) {
var stripe = require('stripe')(ctx.data.STRIPE_PRIVATE_KEY);
var stripeToken = ctx.data.stripeToken;
stripe.customers.create({
source: stripeToken,
description: 'subscription for foo ' + ctx.data.stripeEmail,
email: ctx.data.stripeEmail,
plan: "your-plan"
}, callback);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment