<tfoot id='Xx0Wr'></tfoot>
    <legend id='Xx0Wr'><style id='Xx0Wr'><dir id='Xx0Wr'><q id='Xx0Wr'></q></dir></style></legend>
    • <bdo id='Xx0Wr'></bdo><ul id='Xx0Wr'></ul>

      <i id='Xx0Wr'><tr id='Xx0Wr'><dt id='Xx0Wr'><q id='Xx0Wr'><span id='Xx0Wr'><b id='Xx0Wr'><form id='Xx0Wr'><ins id='Xx0Wr'></ins><ul id='Xx0Wr'></ul><sub id='Xx0Wr'></sub></form><legend id='Xx0Wr'></legend><bdo id='Xx0Wr'><pre id='Xx0Wr'><center id='Xx0Wr'></center></pre></bdo></b><th id='Xx0Wr'></th></span></q></dt></tr></i><div id='Xx0Wr'><tfoot id='Xx0Wr'></tfoot><dl id='Xx0Wr'><fieldset id='Xx0Wr'></fieldset></dl></div>

        <small id='Xx0Wr'></small><noframes id='Xx0Wr'>

      1. 使用 paypal rest API 向用户退款

        Refund users using paypal rest API(使用 paypal rest API 向用户退款)
        <tfoot id='AlOfR'></tfoot>
          <tbody id='AlOfR'></tbody>

        1. <legend id='AlOfR'><style id='AlOfR'><dir id='AlOfR'><q id='AlOfR'></q></dir></style></legend>
          <i id='AlOfR'><tr id='AlOfR'><dt id='AlOfR'><q id='AlOfR'><span id='AlOfR'><b id='AlOfR'><form id='AlOfR'><ins id='AlOfR'></ins><ul id='AlOfR'></ul><sub id='AlOfR'></sub></form><legend id='AlOfR'></legend><bdo id='AlOfR'><pre id='AlOfR'><center id='AlOfR'></center></pre></bdo></b><th id='AlOfR'></th></span></q></dt></tr></i><div id='AlOfR'><tfoot id='AlOfR'></tfoot><dl id='AlOfR'><fieldset id='AlOfR'></fieldset></dl></div>

            • <small id='AlOfR'></small><noframes id='AlOfR'>

                  <bdo id='AlOfR'></bdo><ul id='AlOfR'></ul>
                  本文介绍了使用 paypal rest API 向用户退款的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在开发一个网络应用程序,我允许用户在该应用程序上购买活动门票.我使用 Paypal Rest API 汇款和购买门票.一切正常.现在我正在尝试使用退款方法在此活动将被取消时向与该活动相关的所有用户退款.查看 REST API 文档,我发现有一种退款方法,但是当我在 REST API 包中搜索 laravel 时,我还没有找到如何退款或使用退款方法.rest-api-sdk-php 不支持退款方式吗?如果是,如何在 Laravel 项目中使用它?PS:付款是在没有信用卡的情况下完成的.我只使用带沙箱的贝宝账户.--edit-- 我在尝试其余 api 的退款代码时得到了这个结果:

                  I'm developping a web application on which I allow the users to buy a ticket for an event. I used the Paypal Rest API for sending money and purchasing the tickets.Everything is working just fine. Now I'm trying to use the refund method to refund all users related to an event when this event will be cancelled. Looking in the REST API documentation I found that there is a way to refund but when I search in the REST API package for laravel I haven't found how to refund or use the refund method. Does rest-api-sdk-php doesn't support the refund method? And if yes how to use it in laravel project? PS: the payment are done without a credit card.I use just the paypal acount with sandbox. --edit-- I get this result when trying the refund code of the rest api:

                  {"name":"TRANSACTION_REFUSED","message":"The request was refused.{0}","information_link":"https://developer.paypal.com/webapps/developer/docs/api/#TRANSACTION_REFUSED","debug_id":"97f33dd89f4c8"}
                  

                  推荐答案

                  The error you get (The request was denied.)

                  The error you are getting (The request was refused.)

                  没有看到您的代码,原因可能是以下任何一种:

                  Without seeing your code, any of the following could be the reason:

                  部分退款金额必须小于或等于原始交易金额

                  The partial refund amount must be less than or equal to the original transaction amount

                  部分退款金额必须小于或等于剩余金额

                  The partial refund amount must be less than or equal to the remaining amount

                  部分退款金额无效

                  部分退款必须与原始交易的币种相同

                  The partial refund must be the same currency as the original transaction

                  因本次交易存在投诉案例,只能全额或全额退还交易金额

                  Because a complaint case exists on this transaction, only a refund of the full or full remaining amount of the transaction can be issued

                  您已超过此交易的退款期限

                  You are over the time limit to perform a refund on this transaction

                  部分退款后无法全额退款

                  Cannot do a full refund after a partial refund

                  本次交易已全额退款

                  此类交易无法退款

                  您不能对这笔交易进行部分退款

                  You cannot do a partial refund on this transaction

                  商家帐户有限制或限制

                  这篇关于使用 paypal rest API 向用户退款的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                    <bdo id='SLfKU'></bdo><ul id='SLfKU'></ul>

                      <i id='SLfKU'><tr id='SLfKU'><dt id='SLfKU'><q id='SLfKU'><span id='SLfKU'><b id='SLfKU'><form id='SLfKU'><ins id='SLfKU'></ins><ul id='SLfKU'></ul><sub id='SLfKU'></sub></form><legend id='SLfKU'></legend><bdo id='SLfKU'><pre id='SLfKU'><center id='SLfKU'></center></pre></bdo></b><th id='SLfKU'></th></span></q></dt></tr></i><div id='SLfKU'><tfoot id='SLfKU'></tfoot><dl id='SLfKU'><fieldset id='SLfKU'></fieldset></dl></div>
                      • <small id='SLfKU'></small><noframes id='SLfKU'>

                          <legend id='SLfKU'><style id='SLfKU'><dir id='SLfKU'><q id='SLfKU'></q></dir></style></legend>

                              <tbody id='SLfKU'></tbody>
                          1. <tfoot id='SLfKU'></tfoot>