首頁 > 資料庫 > mysql教程 > 微信开发-获取access

微信开发-获取access

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
發布: 2016-06-07 15:38:09
原創
1194 人瀏覽過

public static String getAccessToken() throws ClientProtocolException,IOException{String url = https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential;url = url + appid= + 你的公众平台 开发 appId + secret= + 你的公众平台appSecr

	public static String getAccessToken() throws ClientProtocolException,
			IOException
	{
		String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential";
		url = url + "&appid=" + 你的公众平台<strong>开发</strong>appId + "&secret=" + 你的公众平台appSecret;

		DefaultHttpClient client = new DefaultHttpClient();
		HttpGet httpGet = new HttpGet(url);
		HttpResponse httpResponse;
	
		httpResponse = client.execute(httpGet);

		int code = httpResponse.getStatusLine().getStatusCode();
		String strResult = EntityUtils.toString(httpResponse.getEntity(),WxData.CharSet);
		if (code == 200)
		{
			JSONObject jsonObject = JSONObject.fromObject(strResult);
			String token = jsonObject.getString("access_token");
			System.out.println(token);
			
		}
		

		return null;
	}
登入後複製

每天接口访问次数为2000次,所以要保存到全局变量中,7200s的技能持续时间;

所需要的jar包

commons-beanutils
commons-collections
commons-httpclient
commons-lang
commons-logging
json-lib-2.3-jdk15


httpcore-4.2.2
httpmime-4.2.3
httpclient-cache-4.2.3
httpclient-4.2.3

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
微信有沙箱麼
來自於 1970-01-01 08:00:00
0
0
0
微信小程式
來自於 1970-01-01 08:00:00
0
0
0
微信外部連結防封問題
來自於 1970-01-01 08:00:00
0
0
0
objective-c - 微信registerApp崩潰
來自於 1970-01-01 08:00:00
0
0
0
微信小程式輪播
來自於 1970-01-01 08:00:00
0
0
0
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板