博客
关于我
支付模块-第三方APP如何拉取微信小程序支付(编码篇)
阅读量:357 次
发布时间:2019-03-04

本文共 3573 字,大约阅读时间需要 11 分钟。

【实现过程】

(1)获取参数

由于我这个接口是小程序调取的,获取的参数第一个是从小程序获取的code值,第二个参数是服务传给小程序,然后小程序再传给服务的orderId。

static String wxXcxUrl = "https://api-mop.chinaums.com/v1/netpay/wx/unified-order";

(2)获取OpenId

通过code值获取到OpenId。

@Service@AllArgsConstructorpublic class WxXcxServiceImpl implements WxXcxService {    private static final Logger log = LoggerFactory.getLogger(WxXcxServiceImpl.class);    @Override    public String getOpenId(String code) throws Exception {        log.debug("通过code值获取到OpenId");        Map
rtnMap = new HashMap<>(); String url = "https://api.weixin.qq.com/sns/jscode2session"; url += "?appid=" + getAppId(); url += "&secret=" + getSecret(); url += "&js_code=" + code; url += "&grant_type=authorization_code"; CloseableHttpClient httpClient = HttpClientBuilder.create().build(); HttpGet httpGet = new HttpGet(url); CloseableHttpResponse response = null; RequestConfig requestConfig = RequestConfig.custom() .setConnectTimeout(5000) .setConnectionRequestTimeout(5000) .setSocketTimeout(5000) .setRedirectsEnabled(false) .build(); httpGet.setConfig(requestConfig); response = httpClient.execute(httpGet); HttpEntity responseEntity = response.getEntity(); if (responseEntity != null) { String res = EntityUtils.toString(responseEntity); log.debug("响应内容为: {}", res); JSONObject jo = JSON.parseObject(res); String openid = jo.getString("openid"); log.debug("openid: {}", openid); return openid; } throw new RuntimeException("获取OpenId失败"); }}

(3)银联的鉴权

@Service @AllArgsConstructorpublic class AppXiaDanServiceImpl implements AppXiaDanService {    private static final String appId = "";    private static final String appKey = "";    private static String authorization;    @Override    public String send(String url, String entity) throws Exception {        authorization = getOpenBodySig(appId, appKey, entity);        CloseableHttpClient httpClient = HttpClients.createDefault();        HttpPost httpPost = new HttpPost(url);        httpPost.addHeader("Authorization", authorization);        StringEntity se = new StringEntity(entity, "UTF-8");        se.setContentType("application/json");        httpPost.setEntity(se);        CloseableHttpResponse response = httpClient.execute(httpPost);        HttpEntity entity1 = response.getEntity();        String resStr = null;        if (entity1 != null) {            resStr = EntityUtils.toString(entity1, "UTF-8");        }        httpClient.close();        response.close();        return resStr;    }    private static String getOpenBodySig(String appId, String appKey, String body) throws Exception {        String timestamp = new SimpleDateFormat("yyyyMMddHHmmss").format(new Date());        String nonce = UUID.randomUUID().toString().replace("-", "");        byte[] data = body.getBytes("UTF-8");        byte[] localSignature = hmacSHA256(data, appKey.getBytes());        String st1_C = appId + timestamp + nonce + bytesToHex(localSignature);        return "OPEN-BODY-SIG AppId=" + "\"" + appId + "\"" + ", Timestamp=" + "\"" + timestamp + "\", Nonce=" + "\"" + nonce + "\", Signature=" + "\"" + st1_C + "\"";    }    private static byte[] hmacSHA256(byte[] data, byte[] key) throws NoSuchAlgorithmException, InvalidKeyException {        Mac mac = Mac.getInstance("HmacSHA256");        mac.init(new SecretKeySpec(key, "HmacSHA256"));        return mac.doFinal(data);    }}

【测试返回】

测试结果:

转载地址:http://hphe.baihongyu.com/

你可能感兴趣的文章
NS图绘制工具推荐
查看>>
NT AUTHORITY\NETWORK SERVICE 权限问题
查看>>
NT symbols are incorrect, please fix symbols
查看>>
ntelliJ IDEA 报错:找不到包或者找不到符号
查看>>
NTFS文件权限管理实战
查看>>
ntko web firefox跨浏览器插件_深度比较:2019年6个最好的跨浏览器测试工具
查看>>
ntko文件存取错误_苹果推送 macOS 10.15.4:iCloud 云盘文件夹共享终于来了
查看>>
ntp server 用法小结
查看>>
ntpdate 通过外网同步时间
查看>>
ntpdate同步配置文件调整详解
查看>>
NTPD使用/etc/ntp.conf配置时钟同步详解
查看>>
NTP及Chrony时间同步服务设置
查看>>
NTP服务器
查看>>
NTP配置
查看>>
NUC1077 Humble Numbers【数学计算+打表】
查看>>
NuGet Gallery 开源项目快速入门指南
查看>>
NuGet(微软.NET开发平台的软件包管理工具)在VisualStudio中的安装的使用
查看>>
nuget.org 无法加载源 https://api.nuget.org/v3/index.json 的服务索引
查看>>
Nuget~管理自己的包包
查看>>
NuGet学习笔记001---了解使用NuGet给net快速获取引用
查看>>