Skip to content

Instantly share code, notes, and snippets.

@mockra
Last active August 29, 2015 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mockra/10691359 to your computer and use it in GitHub Desktop.
Save mockra/10691359 to your computer and use it in GitHub Desktop.
var stripe = require('stripe')('YOUR_API_KEY');
exports.create = function(req, res, next) {
stripe.customers.create(
{ email: user.email, plan: 'YOUR_PLAN_ID', card: req.body.stripeToken },
function(err, customer) {
if (err) return next(err);
user.customerToken = customer.id;
// Save your user, and redirect
}
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment