首信易支付,电话费充值接口

原创
2016-06-13 11:35:49 670浏览

首信易支付,话费充值接口
采用数据加密的形式:md5+des


package com.test.moltest;

import net.sf.json.JSONObject;

import com.huonet.util.DESTools;
import com.huonet.util.UserJsonUtil;

public class MobileRecharg {
public static void main(String[] argv) throws Exception {
//调用充值接口
String application_value = "recharge";
String account = "payease";
String mobile = "13581570818";
String orderid = "201305133127";
String amount = "100";
JSONObject jobj = new JSONObject();
jobj.accumulate("application_value", application_value);
jobj.accumulate("account", account);
jobj.accumulate("mobile", mobile);
jobj.accumulate("amount", amount);
jobj.accumulate("orderid", orderid);
String s = java.net.URLEncoder.encode(UserJsonUtil.encryptJsonUser(jobj));
String res= "http://www1.beijing.com.cn/user/api/mobile_test.jsp?s="+s;
System.out.println( "res=="+res);
//调用结束

//处理返回结果

//res = "CLp5Zjwtq9waj0Q6QNj6TArNHqMOwuJV/FRlHdmk4UFxExX0bEeH+pbi9guWDjTju/XchsQrIfJleZvQGw8Efb4JxzOosnXTstG00gxVzROVinl6o30HUA==";
System.out.println(UserJsonUtil.decryptJsonUser1(res.trim()));
s = DESTools.decrypt("testtest", s);//解密1
jobj = JSONObject.fromObject(s);
System.out.println(jobj);

}

}



这个接口要PHP如何调用?
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。