【问题标题】:I am getting issue with TAP Payment我遇到了 TAP 付款问题
【发布时间】:2020-03-19 19:35:13
【问题描述】:

我在我的swift代码中集成了tap支付方式,但它不起作用,如果我错过了什么,请指导

这是我的代码

**AppDelegate didFinishLaunchingWithOptions **

    let secretKey = SecretKey(sandbox: "my key", production: "my key")
    GoSellSDK.secretKey = secretKey

点击按钮后没有显示点击支付视图控制器没有任何反应 视图控制器

let session = Session()
session.dataSource = self
session.delegate = self


@IBAction func btnCheckout(_ sender: UIButton) {

         SVProgressHUD.show()
         session.start()

    }

会话委托方法

    //TAP Payment

internal func paymentSucceed(_ charge: Charge, on session: SessionProtocol) {

    // payment succeed, saving the customer for reuse.

    if (charge.receiptSettings?.identifier) != nil {

        print(charge.transactionDetails.authorizationID!)
        print(charge.receiptSettings!.identifier!)


    }
}

internal func paymentFailed(with charge: Charge?, error: TapSDKError?, on session: SessionProtocol) {


    print("Error :: ",error?.localizedDescription)

}

internal func authorizationSucceed(_ authorize: Authorize, on session: SessionProtocol) {

    // authorization succeed, saving the customer for reuse.

    if let customerID = authorize.customer.identifier {



    }
}
func authorizationFailed(with authorize: Authorize?, error: TapSDKError?, on session: SessionProtocol)

{
    SVProgressHUD.dismiss()
    print("Error authorizationFailed:: ",error?.localizedDescription)

}


func sessionIsStarting(_ session: SessionProtocol)
{

    print("sessionIsStarting")

}


func sessionHasStarted(_ session: SessionProtocol)
{
    print("sessionHasStarted")

}

func sessionHasFailedToStart(_ session: SessionProtocol)
{
    print("sessionHasFailedToStart")
    SVProgressHUD.dismiss()

}

func sessionCancelled(_ session: SessionProtocol)
{
    print("sessionCancelled")
    SVProgressHUD.dismiss()
}

会话数据源

// MARK: - SessionDataSource

extension PaymentMethodsVC: SessionDataSource {


var currency: Currency? {

    return .with(isoCode: "KWD")
}


var amount: Decimal {

    let amount = 5.99

    return Decimal(amount)
}

var mode: TransactionMode {

    return .purchase
}

var customer: Customer? {

    //        if customerIDIsKnown {
    //
    //            return self.identifiedCustomer
    //        }
    //        else {

    return self.newCustomer
    //        }
}

/// Creating a customer with raw information.
var newCustomer: Customer? {

    let emailAddress = try! EmailAddress(emailAddressString: "customer@mail.com")
    let phoneNumber = try! PhoneNumber(isdNumber: "965", phoneNumber: "96512345")

    return try? Customer(emailAddress:  emailAddress,
                         phoneNumber:   phoneNumber,
                         firstName:     "Steve",
                         middleName:    nil,
                         lastName:      "Jobs")
}


var postURL: URL? {

    return URL(string: "https://tap.company/post")
}

var paymentDescription: String? {

    return "Awesome payment description will be here.";
}

}

【问题讨论】:

  • Chirag Gajjar 你找到解决办法了吗
  • @Customcommander 你找到解决方案了吗
  • 我也面临同样的问题。

标签: ios swift payment payment-processing tap-payment


【解决方案1】:

我遇到了同样的问题,我写了以下代码。

let secretKey = SecretKey(sandbox: "my key", production: "my key")
GoSellSDK.secretKey = secretKey
GoSellSDK.mode = .production

【讨论】:

    【解决方案2】:

    如果您想在沙盒环境中进行测试,请将其添加到 **AppDelegate didFinishLaunchingWithOptions **

    let secretKey = SecretKey(sandbox: "my key", production: "my key")
    GoSellSDK.secretKey = secretKey
    GoSellSDK.mode = .sandbox
    

    【讨论】:

      猜你喜欢
      • 2022-01-26
      • 2017-04-26
      • 2019-11-09
      • 2018-07-04
      • 2014-06-27
      • 2019-03-26
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多