使用定价表时,Stripe 客户端参考 ID 不会保留在 Stripe 面板上条纹测试</title&...</desc> <question vote="3"> <p>我正在发送条纹定价计划如下:</p> <pre><code><!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Stripe test</title> </head> <body> <h1>We offer plans that help any business!</h1> <script async src="https://js.stripe.com/v3/pricing-table.js"></script> <stripe-pricing-table pricing-table-id="prctbl_1Lzz3iIG2cLiTx0jaBzzuu2n" publishable-key="pk_test_51LzyrVIG2cLiTx0jTtSPJW5Iakij92jHOLV3yoFEXd0HkoFimTDJHGxk1CaF6rkqrFLjQqCqlAq3qFHrdVHqnZYQ00f4U3vt1U" client-reference-id="cus_Mjrmqd6bfD8gA9"> </stripe-pricing-table> </body> </html> </code></pre> <p>我们可以看到client-reference-id实际上是<pre><code>cus_Mjrmqd6bfD8gA9</code></pre>;但在条纹面板上,它显示为完全不同的东西,如下图所示:<pre><code>cus_Mjs18ntyjh4qKA</code></pre>:</p> <p><a href="https://i.sstatic.net/Lg5Yf.png" rel="nofollow noreferrer"><img src="https://cdn.txt58.com/i/AWkuc3N0YXRpYy5uZXQvTGc1WWYucG5n" alt="enter image description here"/></a></p> <p>这是一种奇怪的行为,我遵循了文档中所说的一切。我是否遗漏了文档中的某些内容?</p> </question> <answer tick="true" vote="3"> <p>定价表将始终创建一个全新的客户对象。因此,您共享的仪表板屏幕截图显示了创建的新客户 ID。</p> <p>如果你想找到你传递的<pre><code>client-reference-id</code></pre>,它将在Checkout Session对象中,如<a href="https://stripe.com/docs/payments/checkout/pricing-table#handle-fulfillment-with-the-stripe-api" rel="nofollow noreferrer">here</a>所述。</p> <blockquote> <p>设置属性后,定价表会将其传递给结帐会话的 <pre><code>client_reference_id</code></pre> 属性,以帮助您使结帐会话与内部系统保持一致。</p> </blockquote> </answer> <answer tick="false" vote="0"> <p>我遇到了和你一模一样的问题。你是怎么解决的?</p> </answer> </body></html>

问题描述 投票:0回答:0
javascript stripe-payments payment-gateway
© www.soinside.com 2019 - 2024. All rights reserved.