我正在使用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
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>