weibo4j.Reminds Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weibo-openapi-4java Show documentation
Show all versions of weibo-openapi-4java Show documentation
基于微博开放平台官网的weibo4j-oauth2-beta3.1.1包及新版接口做二次开发
The newest version!
/*
* Copyright © 2021 pengjianqiang
* All rights reserved.
* 项目名称:微博开放平台API-JAVA SDK
* 项目描述:基于微博开放平台官网的weibo4j-oauth2-beta3.1.1包及新版接口做二次开发
* 项目地址:https://github.com/qqxadyy/weibo-openapi-4java
* 许可证信息:见下文
*
* ======================================================================
*
* src/main/java/weibo4j下的文件是从weibo4j-oauth2-beta3.1.1.zip中复制出来的
* 本项目对这个目录下的部分源码做了重新改造
* 但是许可信息和"https://github.com/sunxiaowei2014/weibo4j-oauth2-beta3.1.1"或源码中已存在的保持一致
*/
package weibo4j;
import java.util.Map;
import weibo4j.model.PostParameter;
import weibo4j.model.WeiboException;
import weibo4j.org.json.JSONObject;
import weibo4j.util.ArrayUtils;
import weibo4j.util.WeiboConfig;
public class Reminds extends Weibo {
private static final long serialVersionUID = 5042162449339969435L;
public Reminds(String access_token) {
this.accessToken = access_token;
}
/**
* 获取某个用户的各种消息未读数
*
*
* @return
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.2
* @see http://open.weibo.com/wiki/2/remind/unread_count
* @since JDK 1.5
*/
public JSONObject getUnreadCountOfRemind() throws WeiboException {
return client.get(WeiboConfig.getOpenAPIBaseURL() + "remind/unread_count.json", accessToken).asJSONObject();
}
public JSONObject getUnreadCountOfRemind(String callback) throws WeiboException {
return client.get(WeiboConfig.getOpenAPIBaseURL() + "remind/unread_count.json",
new PostParameter[] {new PostParameter("callback", callback)}, accessToken).asJSONObject();
}
public JSONObject getUnreadCountOfRemind(Map map) throws WeiboException {
PostParameter[] parList = ArrayUtils.mapToArray(map);
return client.get(WeiboConfig.getOpenAPIBaseURL() + "remind/unread_count.json", parList, accessToken)
.asJSONObject();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy