下载 ngrok
参考网址
http://blog.csdn.net/achenyuan/article/details/71106689
使用
cd D:\ngrok-stable-windows-amd64
d:
ngrok.exe authtoken 3WeiJgYsiohmTTbZ8HB5L_4DoK3ThFJ69Wx5iS8UGJz
ngrok.exe http 80
下载 web 开发者工具,找到 下载地址
https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1455784140
公众平台-->开发者工具-->公众平台测试帐号
获取到 appID appsecret
1、公众号 扫描测试号二维码关注
2、ngrok 创建本机域名
3、网页服务--》网页帐号--》修改--》授权回调页面域名: 882c783d.ngrok.io 该域名为ngrok域名
4、修改程序中 appID值
org.liufeng.course.servlet.OAuthServlet
AdvancedUtil.getOauth2AccessToken()
org.liufeng.course.util.SignUtil.token 值
5、使用微信客户端软件,打开连接
https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx7181f1f0503a954a&redirect_uri=http://882c783d.ngrok.io/chapter-06/oauthServlet&response_type=code&scope=snsapi_userinfo&state=xxxx_state#wechat_redirect
appid:wx7181f1f0503a954a
scope=snsapi_userinfo 获取用户信息
redirect_uri 回调地址,详细查看web.xml
微信公众技术文档 https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140842
微信公众平台
https://mp.weixin.qq.com/cgi-bin/frame?t=advanced/dev_tools_frame&nav=10049&token=1958267125&lang=zh_CN
参考网址:
http://www.cnblogs.com/lovebread/p/5513241.html
http://www.cnblogs.com/skillking/p/6735730.html
1