簡體   English   中英

Paytm 支付網關 startTransaction 響應錯誤

[英]Paytm Payment Gateway startTransaction response error

Paytm 支付網關 React Native 移動應用程序。 在點擊這個函數后 => startTransaction 響應沒有繼續然后阻塞,但如果有任何錯誤,它會在 catch 阻塞

const startRawTransaction = ()=> {
        const orderId = this.state.orderId;
        const mid = MID;
        const tranxToken = this.props.txtnToken;
        const amount = this.state.amount;
        const isStaging = this.state.isStaging;
        const callbackurl = 'https://securegw-stage.paytm.in/theia/paytmCallback?ORDER_ID='+orderId;
        const appInvokeRestricted = true;
        AllInOneSDKManager.startTransaction(
          orderId,
          mid,
          tranxToken,
          amount,
          callbackurl,
          isStaging,
          appInvokeRestricted,
        )
        .then((result) => {
          console.log("result", result);
        })
        .catch((err) => {
            console.log(err)
        });
    }

響應錯誤 React Native 移動應用截圖

正在使用的功能是正確的,我們將不得不在您的最后進行調試 請在“Paytm 開發人員支持”上提出查詢。 我們需要更多信息來檢查

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM