我在我的颤振应用程序中将 Paytm 全部用于一个 sdk。它抛出 PlatformException 错误

Posted

技术标签:

【中文标题】我在我的颤振应用程序中将 Paytm 全部用于一个 sdk。它抛出 PlatformException 错误【英文标题】:I'm using the Paytm all in one sdk in my flutter application. It's throwing PlatformException error 【发布时间】:2021-07-27 10:03:13 【问题描述】:

在我的应用程序中,我在一个页面中调用 startTransaction() 插件方法,并将响应存储在 paytm 文档中。在收到响应时,我想将成功或失败的状态返回到上一页。所以在 init() 函数中,我调用了另一个异步方法来 startTransaction 并检查响应。

PlatformException (0, Unknown error, response : response of transaction)

class StartTransaction extends StatefulWidget 
  int orderId;
  double totalAmount;
  PaymentPayload paymentPayload;
  bool success;
  StartTransaction(this.orderId,this.totalAmount);
  @override
  _StartTransactionState createState() => _StartTransactionState();


class _StartTransactionState extends State<StartTransaction> 

@override
  void initState() 
    super.initState();
    initiateTransaction();
  

  Future initiateTransaction() async 
    if(widget.success == null)
      widget.paymentPayload = await createPaymentGateway(
          widget.orderId,
          userBloc.userData.username,
        widget.totalAmount.toStringAsFixed(2),
          context);
      var pgResp = AllInOneSdk.startTransaction(
          widget.paymentPayload.mid,
          widget.orderId.toString(),
          widget.totalAmount.toStringAsFixed(2),
          widget.paymentPayload.txnToken,
          widget.paymentPayload.callbackUrl,
          true,
          false);
      pgResp.then((value) 
        print(value);
        setState(() 
          widget.success = value['RESPCODE'] == 01;
        );
      ).catchError((onError) 
        setState(() 
          widget.success = false;
        );
      );
    
  
  @override
  Widget build(BuildContext context) 
    return Scaffold(
      body: SafeArea(
        child: FutureBuilder(
            builder: (context, snapshot) 
              if(widget.success == true) 
                print('Payment successful');
                Navigator.pop(context,true);
               else if(widget.success == false) 
                print('Payment unsuccessful');
                Navigator.pop(context,false);
              
              return Center(
                child: Column(
                  mainAxisAlignment: MainAxisAlignment.center,
                  crossAxisAlignment: CrossAxisAlignment.center,
                  children: [
                    Text('We are processing your transaction', style: TextStyle(fontSize: 36),),
                    CircularProgressIndicator(),
                  ],
                ),
              );
            
        ),
      ),
    );
  

  
```

【问题讨论】:

【参考方案1】:

您需要根据交易中使用的订单id和MID调用交易状态API。无需再次调用starttransaction方法

【讨论】:

在尝试对事务状态进行 API 调用时,我总是收到 501 系统错误。我该如何解决? 请分享一个示例 curl 请求,checksumhash 不能正确生成【参考方案2】:

您应该使用事务状态 API 通过服务器端请求验证事务响应。此 API 在请求和响应中需要校验和。您必须使用您的数据验证订单 ID 和金额。在所有情况下,该状态都应视为交易的最终状态。

【讨论】:

在尝试对事务状态进行 API 调用时,我总是收到 501 系统错误。我该如何解决? 你可以连接paytm,他们会解决你的问题。【参考方案3】:

这种情况下需要使用我们的静态回调url

暂存环境:“https://securegw-stage.paytm.in/theia/paytmCallback?ORDER_ID=” 生产环境:“https://securegw.paytm.in/theia/paytmCallback?ORDER_ID=

【讨论】:

以上是关于我在我的颤振应用程序中将 Paytm 全部用于一个 sdk。它抛出 PlatformException 错误的主要内容,如果未能解决你的问题,请参考以下文章

我在 firebase 的列表中有一系列项目。我想在我的颤振应用程序中显示这些数组元素,但我失败了

校验和不匹配错误 paytm 支付集成

在 iOS 中集成 PayTm 支付

颤振 |我如何记录用户在我的应用程序中花费的时间?

Firebase颤振推送通知不适用于Android

如何在颤动中将浏览器 URL 更新为非根导航器的路由更改?