将Paytm与swift 3.0集成

时间:2017-04-07 05:34:27

标签: ios swift3 paytm

我想将paytm付款网关与swift 3.0集成。我只需关注github link 。但我在["CHECKSUMHASH"] ="" 。我能把这把钥匙放进去。

orderDict["MID"] = strMid
                            orderDict["ORDER_ID"] = strOrderId
                            orderDict["CUST_ID"] = strCustomerId
                            orderDict["INDUSTRY_TYPE_ID"] = strIndustryType
                            orderDict["CHANNEL_ID"] = strChanalID
                            orderDict["TXN_AMOUNT"] = strAmt
                            orderDict["WEBSITE"] = strWebsite
                            orderDict["CALLBACK_URL"] = "http://xxxxx.co.in/verifyChecksum.php"
                    orderDict["CHECKSUMHASH"] = ""

这给了我无效的校验和,请告诉我如何生成校验和。

2 个答案:

答案 0 :(得分:5)

首先,您可以调用服务器api来生成校验和。如果您使用的是Almofire,请致电

var parameters:[String:String]?
        parameters = ["MID":strMid,"ORDER_ID":strOrderId ,"INDUSTRY_TYPE_ID":strIndustryType,"CHANNEL_ID":strChanalID,"TXN_AMOUNT":strAmt,"WEBSITE":strWebsite, "CUST_ID":strCustomerId,"CALLBACK_URL":"http://xxxxxxx.co.in/verifyChecksum.php"]
                    showHud(self.view)
        print(parameters)

        Alamofire.request("http://xxxxxx.co.in/generateChecksum.php", method: .post, parameters: parameters,encoding: URLEncoding.default, headers: nil).responseJSON {}

请在此API中传递所有 parameter。它低于response

{
  "CHECKSUMHASH": "xxxxxxxxxxxxx",
  "ORDER_ID": "xxxxxxxx",
  "payt_STATUS": "1"
}

在此Dictionary中,您获得CHECKSUMHASH传递给paytm order

答案 1 :(得分:1)

要在快速应用中集成PayTm,您可以在github上找到this链接。