您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關怎么使用java代碼獲取新浪微博應用的access token代碼,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
具體內容如下
package test; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.URI; import java.net.URISyntaxException; import org.apache.http.HttpEntity; import org.apache.http.HttpHost; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpPost; import org.apache.http.conn.params.ConnRoutePNames; import org.apache.http.impl.client.DefaultHttpClient; public class WeiboAccessTokenRequest { static public void main(String[] arg) { //System.setProperty("http.proxyHost", "proxy.wdf.diablo.corp"); //System.setProperty("http.proxyPort", "8080"); HttpClient httpclient = new DefaultHttpClient(); HttpPost post = new HttpPost(); URI url; try { //url = new URI("https://api.weibo.com/oauth3/access_token"); String request = "https://api.weibo.com/oauth3/access_token?client_id=3921363495&client_secret=bac53e1f9c1e66514cf7410e39d581dd" + "&grant_type=authorization_code&code=7420036e360713bab82f62a5275aaba7&redirect_uri=https://api.weibo.com/oauth3/default.html"; url = new URI(request); post.setURI(url); HttpHost proxy = new HttpHost("proxy.wdf.sap.corp", 8080); httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy); /*post.addHeader("client_id", "3921363495"); post.addHeader("client_secret", "bac53e1f9c1e66514cf7410e39d581dd"); post.addHeader("grant_type", "authorization_code"); post.addHeader("code", "7420036e360713bab82f62a5275aaba7"); post.addHeader("redirect_uri", "https://api.weibo.com/oauth3/default.html");*/ HttpResponse response = httpclient.execute(post); HttpEntity entity = response.getEntity(); if (entity == null) { System.out.println("response is null!"); return; } InputStream instreams = entity.getContent(); String str = convertStreamToString(instreams); System.out.println("Do something"); System.out.println(str); } catch (Exception e) { e.printStackTrace(); } } public static String convertStreamToString(InputStream is) { BufferedReader reader = new BufferedReader(new InputStreamReader(is)); StringBuilder sb = new StringBuilder(); String line = null; try { while ((line = reader.readLine()) != null) { sb.append(line + "\n"); } } catch (IOException e) { e.printStackTrace(); } finally { try { is.close(); } catch (IOException e) { e.printStackTrace(); } } return sb.toString(); } }
Java的特點有哪些 1.Java語言作為靜態面向對象編程語言的代表,實現了面向對象理論,允許程序員以優雅的思維方式進行復雜的編程。 2.Java具有簡單性、面向對象、分布式、安全性、平臺獨立與可移植性、動態性等特點。 3.使用Java可以編寫桌面應用程序、Web應用程序、分布式系統和嵌入式系統應用程序等。
關于“怎么使用java代碼獲取新浪微博應用的access token代碼”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。