java后端实现微信分享接口
微信官方文档:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html 步骤: 1,得到需要分享的页面链接,必传部分以#结束 2,获取到#前的链接 3,根据微信appid获取access_token( 这个与网页授权的access_token不一样,并且7200秒内只能获取一次 ) String access_token = "" ; String grant_type = "client_credential" ; //获取access_token填写client_credential //这个url链接地址和参数皆不能变 String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=" + grant_type + "&appid=" + appID + "&secret=" + appsecret ; try { URL urlGet = new URL ( url ) ; HttpURLConnection http = ( HttpURLConnection ) urlGet . openConnection ( ) ; http . setRequestMethod ( "GET" ) ; // 必须是get方式请求