作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
https://stripe.com/docs/api/checkout/sessions/retrieve这是链接,但它在客户端创建付款网址。但我只希望从服务器端获得它,以便我可以将它临时保存在数据库中。
最佳答案
根据你的问题,我了解到你想将 stripe 的结帐 session 链接临时存储在数据库中。共享的文档是正确的。
const session = await stripe.checkout.sessions.create(payload);
// get your customer, success and cancel URL, and other details in the payload object.
if (session) console.log(session.url)
我希望这就是您要找的。
关于javascript - 如何从服务器端创建可重定向的 strip 支付网址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58484357/
我是一名优秀的程序员,十分优秀!