我希望在angular2应用程序中实现条带连接以使用户能够销售他们的产品,是否需要node.js服务器来实现这一部分?或者它可以像条纹结账一样直接完成?
答案 0 :(得分:0)
你总是需要Stripe的后端(即你提到的:nodejs服务器)。无论你使用Checkout还是没有 - 你得到一个令牌,你需要处理针对该令牌的指控。
以下是其文档的链接:https://stripe.com/docs/quickstart#elements
以下是该文档的摘录:
// Set your secret key: remember to change this to your live secret key in production
// See your keys here: https://dashboard.stripe.com/account/apikeys
var stripe = require("stripe")("sk_test_BQokikJOvBiI2HlWgH4olfQ2");
// Token is created using Stripe.js or Checkout!
// Get the payment token submitted by the form:
var token = request.body.stripeToken; // Using Express
// Charge the user's card:
var charge = stripe.charges.create({
amount: 1000,
currency: "usd",
description: "Example charge",
source: token,
}, function(err, charge) {
// asynchronously called
});
请注意您从Stripe.js或Checkout获得令牌的评论。