如何使用本地HTML文件添加PAYUBIZ的成功和失败URL

时间:2019-01-09 05:26:44

标签: android ios payment-gateway payumoney payu

我正在使用iOS和android的payubiz付款门服务。

使用以下链接

https://github.com/payu-intrepos/Documentations/wiki/8.-iOS-SDK-integration#nonseamless

有关使用以下方法付款的成功或失败过程

paymentParam.SURL = @“ https://payu.herokuapp.com/success”;

paymentParam.FURL = @“ https://payu.herokuapp.com/failure”;

我进行了如下更改

在我的项目中添加了success.html

enter image description here

NSString * path = [[NSBundle mainBundle] pathForResource:@“ success” ofType:@“ html”];   paymentParam.SURL =路径;

但是在付款过程中,我收到了类似的错误消息。

SURL is invalid, payment has is missing..

请建议我如何使用PAYUBIZ SURL和FURL添加本地添加的html文件

预先感谢

Success.html文件代码

<html>
    <head>
        <title>
            Payment Success
        </title>
    </head>
    <body style="size:31px;text-align: center;/* height: 100%; */position: relative;vertical-align: middle;margin-top: 231PX;">
        <p>Your Payment has been successfully processed!</p>
        <img src="https://upload.wikimedia.org/wikipedia/commons/b/b1/Loading_icon.gif">
    </body>
</html>

0 个答案:

没有答案