|
|
|
package com.zc.business.controller;
|
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
import org.apache.http.HttpEntity;
|
|
|
|
import org.apache.http.HttpResponse;
|
|
|
|
import org.apache.http.client.HttpClient;
|
|
|
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
|
|
|
import org.apache.http.client.methods.HttpGet;
|
|
|
|
import org.apache.http.impl.client.CloseableHttpClient;
|
|
|
|
import org.apache.http.impl.client.HttpClients;
|
|
|
|
import org.apache.http.util.EntityUtils;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.net.HttpURLConnection;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.net.URLEncoder;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author 王思祥
|
|
|
|
* @ClassName DcWarningPush 微博推送
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class WeiboAuthUtil {
|
|
|
|
//1.登录传入重定向的url,用户授权后返回授权的code,2.使用code取得认证权限token 3.调用接口参数
|
|
|
|
//1.登录获取用户的回调code
|
|
|
|
private static final String APP_KEY = "1894516689";
|
|
|
|
private static final String APP_SECRET = "4e89660243b70328fb74ae10f9ed98e5";
|
|
|
|
private static final String REDIRECT_URI = "https://api.weibo.com/oauth2/default.html";//授权回调地址
|
|
|
|
//获取授权后的code
|
|
|
|
public String tokenCode(){
|
|
|
|
String url="https://api.weibo.com/oauth2/authorize?client_id="+APP_KEY+"&redirect_uri="+REDIRECT_URI+"&response_type=code";
|
|
|
|
String accessToken=null;
|
|
|
|
com.alibaba.fastjson.JSONObject jsonObj = null;
|
|
|
|
try {
|
|
|
|
URL urlGet = new URL(url);
|
|
|
|
HttpURLConnection http = (HttpURLConnection) urlGet.openConnection();
|
|
|
|
http.setRequestMethod("GET"); // 必须是get方式请求
|
|
|
|
http.setDoInput(true);
|
|
|
|
http.connect();
|
|
|
|
InputStream is = http.getInputStream();
|
|
|
|
int size = is.available();
|
|
|
|
byte[] jsonBytes = new byte[size];
|
|
|
|
is.read(jsonBytes);
|
|
|
|
accessToken = new String(jsonBytes, "UTF-8");
|
|
|
|
System.err.println(accessToken);
|
|
|
|
jsonObj = com.alibaba.fastjson.JSONObject.parseObject(accessToken);
|
|
|
|
is.close();
|
|
|
|
return jsonObj.get("code").toString();
|
|
|
|
}catch (Exception e){
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
//获取toke
|
|
|
|
public String token(String code)throws IOException {
|
|
|
|
HttpClient httpClient = HttpClients.createDefault();
|
|
|
|
String tokenUrl = REDIRECT_URI + "?client_id=" + APP_KEY
|
|
|
|
+ "&client_secret=" + APP_SECRET
|
|
|
|
+ "&grant_type=authorization_code"
|
|
|
|
+ "&code=" + code
|
|
|
|
+ "&redirect_uri=" + URLEncoder.encode(REDIRECT_URI, "UTF-8");
|
|
|
|
HttpGet httpGet = new HttpGet(tokenUrl);
|
|
|
|
HttpResponse response = httpClient.execute(httpGet);
|
|
|
|
HttpEntity entity = response.getEntity();
|
|
|
|
if (entity != null) {
|
|
|
|
String responseBody = EntityUtils.toString(entity, "UTF-8");
|
|
|
|
org.json.JSONObject jsonObject = new org.json.JSONObject(responseBody);
|
|
|
|
return jsonObject.optString("access_token");
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
//执行调用推送api
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
|
WeiboAuthUtil weiboAuthUtil = new WeiboAuthUtil();
|
|
|
|
String code = weiboAuthUtil.tokenCode();
|
|
|
|
String accessToken = weiboAuthUtil.token("1223e0dbc177fe5a20ba1cc2f3c444d5");//认证后的code放入,获取token
|
|
|
|
// 创建HttpClient实例
|
|
|
|
try (CloseableHttpClient httpClient = HttpClients.createDefault()) {
|
|
|
|
// 构建请求URL,这里以获取用户信息为例
|
|
|
|
String url = "https://api.weibo.com/2/users/show.json?access_token=" + accessToken + "&uid=用户UID";
|
|
|
|
// 创建HttpGet请求
|
|
|
|
HttpGet httpGet = new HttpGet(url);
|
|
|
|
// 执行请求并获取响应
|
|
|
|
try (CloseableHttpResponse response = httpClient.execute(httpGet)) {
|
|
|
|
HttpEntity entity = response.getEntity();
|
|
|
|
if (entity != null) {
|
|
|
|
// 读取响应内容
|
|
|
|
String responseString = EntityUtils.toString(entity, "UTF-8");
|
|
|
|
System.out.println(responseString);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|