菜鸟教程小白 发表于 2022-12-13 14:03:30

ios - 如何在 ios 中实现 Payeezy Recurring 基本付款?


                                            <p><p>我想在我的 iOS 应用中使用 Payeezy 集成定期付款。</p>

<p>我已经成功集成了一次支付,它工作正常。</p>

<p>我怎样才能做到这一点?</p>

<p>我已经引用了这个 <a href="https://developer.payeezy.com/payeezy-api/apis/post/transactions/%7Bid%7D-1" rel="noreferrer noopener nofollow">link</a> </p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我是 First Data Payeezy 团队的产品经理。 </p>

<p>截至目前,Payeezy API 不支持启动在 Payeezy Gateway 内管理的定期计划。管理自己的重复计划的商家可以利用重复指标通过 API 传递数据。要使用循环指标,您需要使用“eci_indicator”字段并将其设置为“2”。例如,这是一个使用 eci_indicator 表示定期付款的购买交易负载。</p>

<pre><code>{
&#34;merchant_ref&#34;: &#34;Astonishing-Sale&#34;,
&#34;transaction_type&#34;: &#34;purchase&#34;,
&#34;method&#34;: &#34;credit_card&#34;,
&#34;amount&#34;: &#34;1299&#34;,
&#34;eci_indicator&#34;:&#34;2&#34;,
&#34;currency_code&#34;: &#34;USD&#34;,
&#34;credit_card&#34;: {
      &#34;type&#34;: &#34;visa&#34;,
      &#34;cardholder_name&#34;: &#34;John Smith&#34;,
      &#34;card_number&#34;: &#34;4788250000028291&#34;,
      &#34;exp_date&#34;: &#34;1020&#34;,
      &#34;cvv&#34;: &#34;123&#34;
}
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 ios 中实现 Payeezy Recurring 基本付款?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35153679/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35153679/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 ios 中实现 Payeezy Recurring 基本付款?