sql-server - 如何在flutter中连接easypaisa/jazzcash支付网关?

标签 sql-server flutter dart cross-platform payment-gateway

关闭。这个问题需要更多focused .它目前不接受答案。












想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post .

10 个月前关闭。




Improve this question




怎么办,我被卡住了,请给我发送代码并描述我。如何在flutter中连接easypaisa/jazzcash支付网关?

最佳答案

我已经通过 REST API 实现了爵士现金支付门,
第一步:登录沙盒爵士现金账户
第 2 步:选择 REST API 版本 1.1
第三步:复制商户id、密码、诚信盐id
这是下面的代码和教程:https://www.youtube.com/watch?v=wW9V7IVjpic&t=10

 payment() async{
var digest;
String dateandtime = DateFormat("yyyyMMddHHmmss").format(DateTime.now());
String dexpiredate = DateFormat("yyyyMMddHHmmss").format(DateTime.now().add(Duration(days: 1)));
String tre = "T"+dateandtime;
String pp_Amount="100000";
String pp_BillReference="billRef";
String pp_Description="Description";
String pp_Language="EN";
String pp_MerchantID="your id";
String pp_Password="your password";

String pp_ReturnURL="https://sandbox.jazzcash.com.pk/ApplicationAPI/API/Payment/DoTransaction";
String pp_ver = "1.1";
String pp_TxnCurrency= "PKR";
String pp_TxnDateTime=dateandtime.toString();
String pp_TxnExpiryDateTime=dexpiredate.toString();
String pp_TxnRefNo=tre.toString();
String pp_TxnType="MWALLET";
String ppmpf_1="4456733833993";
String IntegeritySalt = "your key";
String and = '&';
String superdata=
    IntegeritySalt+and+
        pp_Amount+and+
        pp_BillReference +and+
        pp_Description +and+
        pp_Language +and+
        pp_MerchantID +and+
        pp_Password +and+
        pp_ReturnURL +and+
        pp_TxnCurrency+and+
        pp_TxnDateTime +and+
        pp_TxnExpiryDateTime +and+
        pp_TxnRefNo+and+
        pp_TxnType+and+
        pp_ver+and+
        ppmpf_1
;



var key = utf8.encode(IntegeritySalt);
var bytes = utf8.encode(superdata);
var hmacSha256 = new Hmac(sha256, key);
Digest sha256Result = hmacSha256.convert(bytes);
var url = 'https://sandbox.jazzcash.com.pk/ApplicationAPI/API/Payment/DoTransaction';

var response = await http.post(url, body: {
  "pp_Version": pp_ver,
  "pp_TxnType": pp_TxnType,
  "pp_Language": pp_Language,
  "pp_MerchantID": pp_MerchantID,
  "pp_Password": pp_Password,
  "pp_TxnRefNo": tre,
  "pp_Amount": pp_Amount,
  "pp_TxnCurrency": pp_TxnCurrency,
  "pp_TxnDateTime": dateandtime,
  "pp_BillReference": pp_BillReference,
  "pp_Description": pp_Description,
  "pp_TxnExpiryDateTime":dexpiredate,
  "pp_ReturnURL": pp_ReturnURL,
  "pp_SecureHash": sha256Result.toString(),
  "ppmpf_1":"4456733833993"
});

print("response=>");
print(response.body);
}

关于sql-server - 如何在flutter中连接easypaisa/jazzcash支付网关?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62199463/

相关文章:

flutter - flutter 柱删除空间之间的子项

firebase - 如何从子集合文档中获取数据,firestore(Flutter)

dart - 如何使用英雄在 2 个不同的按钮之间有相同的页面目标

google-chrome-extension - 在 Chrome 扩展内容脚本中使用 Dart 不运行?

flutter - 时间线 View 、日 View 、周 View 、月 View 并添加事件日历 flutter 库?

sql - 如何获得sql中每个答案的百分比?

sql-server - SQL Server IDE 中 MDX 查询图标的含义

sql - 如何在SQL Server中将自定义字符串转换为日期

unit-testing - 在 Dart 中重构友好的模拟

c# - 在未安装 SSMS 的服务器上使用 SqlPackage.exe