微信小程序开发

官方api  https://mp.weixin.qq.com/debug/wxadoc/dev/api/api-network.html

1 注册微信小程序帐号 

2 下载开发工具 链接  https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html

3 登录开发工具,填写appid ,开始开发

备注 获取 openid

public static String getOpenid(String code){
Map<String, Object> map = new HashMap<>();
map.put("appid", WxConfig.appid);
map.put("secret", WxConfig.secret);
map.put("js_code", code);
map.put("grant_type", WxConfig.grant_type);
String jsons = SysUtil.getUrlResult(WxConfig.url, map , "POST");
JSONObject js= JSONObject.parseObject(jsons);
return js==null?"":js.getString("openid");
}

 

小程序支付

1 登录微信小程序 申请支付

2 申请成功腾讯会发邮件 给你,邮件里有商户账号密码

3 登录微信商户平台 下载证书,配置api 密钥

开始开发

想要源码联系qq 2506715686

 

微信小程序开发

上一篇:Skype For Business 2015实战系列16:安装并配置监控存档服务器


下一篇:mysql修改表类型(1064错误)