
com.jeecg.weibo.api.WeiboSendApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin4j Show documentation
Show all versions of weixin4j Show documentation
微信和钉钉开发SDK,主要提供微信、企业微信、钉钉的JAVA封装,降低集成难度,让API变简单
The newest version!
package com.jeecg.weibo.api;
import com.alipay.api.internal.util.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.alibaba.fastjson.JSONObject;
import com.jeecg.weibo.dto.WeiboSendDto;
import com.jeecg.weibo.exception.BusinessException;
import com.jeecg.weibo.util.HttpUtil;
import com.jeecg.weibo.util.WeiboSendUtil;
public class WeiboSendApi {
private static final Logger logger = LoggerFactory.getLogger(WeiboSendApi.class);
//指定一个图片URL地址抓取后上传并同时发布一条新微博
private static final String upload_url_text_url="https://api.weibo.com/2/statuses/upload_url_text.json?1=1";
//发布一条新微博
private static String update_url = "https://api.weibo.com/2/statuses/update.json?1=1";
//删除一条微博
private static String delete_url = "https://api.weibo.com/2/statuses/destroy.json?1=1";
public static JSONObject sendWeibo(WeiboSendDto send){
JSONObject j=null;
try {
logger.info("发布新微博的参数为:"+send.toString());
//验证请求参数
WeiboSendUtil.getSendParmValidate(send);
if(StringUtils.isEmpty(send.getUrl())){
String sendUrl = WeiboSendUtil.getSendUrl(update_url, send);
logger.info("发布新微博的路径为:"+sendUrl);
j = HttpUtil.httpRequest(sendUrl, "POST", "");
}else{
String sendUrl = WeiboSendUtil.getSendUrl(upload_url_text_url, send);
logger.info("发布新微博的路径为:"+sendUrl);
j = HttpUtil.httpRequest(sendUrl, "POST", "");
}
if(j!=null){
logger.info("发布新微博的结果为:"+j.toString());
}else{
logger.info("发布新微博的结果为:null");
}
}catch(BusinessException e) {
logger.info(e.getMessage());
} catch (Exception e) {
e.printStackTrace();
}
return j;
}
public static JSONObject delWeibo(WeiboSendDto send){
JSONObject j=null;
try {
logger.info("删除微博的参数为:"+send.toString());
//验证请求参数
WeiboSendUtil.delParmValidate(send);
String delUrl = WeiboSendUtil.getDelUrl(delete_url, send);
logger.info("删除微博的路径为:"+delUrl);
j = HttpUtil.httpRequest(delUrl, "POST", "");
if(j!=null){
logger.info("删除微博的结果为:"+j.toString());
}else{
logger.info("删除微博的结果为:null");
}
}catch(BusinessException e) {
logger.info(e.getMessage());
} catch (Exception e) {
e.printStackTrace();
}
return j;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy