Last active
October 1, 2020 15:46
-
-
Save woloski/c535a365efc753242935 to your computer and use it in GitHub Desktop.
Stripe Checkout + webtask
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
<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> |
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
// 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