本文整理汇总了Java中weibo4j.model.Comment.constructWapperComments方法的典型用法代码示例。如果您正苦于以下问题:Java Comment.constructWapperComments方法的具体用法?Java Comment.constructWapperComments怎么用?Java Comment.constructWapperComments使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类weibo4j.model.Comment
的用法示例。
在下文中一共展示了Comment.constructWapperComments方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getCommentById
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 根据微博ID返回某条微博的评论列表
*
* @param id
* 需要查询的微博ID
* @return list of Comment
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.1
* @see http://open.weibo.com/wiki/2/comments/show
* @since JDK 1.5
*/
public CommentWapper getCommentById(String id) throws WeiboException {
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/show.json",
new PostParameter[] { new PostParameter("id", id) },
access_token));
}
示例2: getCommentByMe
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 获取当前登录用户所发出的评论列表
*
* @param count
* 单页返回的记录条数,默认为50
* @param page
* 返回结果的页码,默认为1
* @param filter_by_source
* 来源筛选类型,0:全部、1:来自微博的评论、2:来自微群的评论,默认为0
* @return list of Comment
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.1
* @see http://open.weibo.com/wiki/2/comments/by_me
* @since JDK 1.5
*/
public CommentWapper getCommentByMe(Paging page, Integer filter_by_source)
throws WeiboException {
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/by_me.json",
new PostParameter[] { new PostParameter("filter_by_author",
filter_by_source.toString()) }, page, access_token));
}
示例3: getCommentToMe
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 获取当前登录用户所接收到的评论列表
*
* @param count
* 单页返回的记录条数,默认为50。
* @param page
* 返回结果的页码,默认为1。
* @param filter_by_author
* 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
* @param filter_by_source
* 来源筛选类型,0:全部、1:来自微博的评论、2:来自微群的评论,默认为0。
* @return list of Comment
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.1
* @see http://open.weibo.com/wiki/2/comments/to_me
* @since JDK 1.5
*/
public CommentWapper getCommentToMe(Paging page, Integer filter_by_source,
Integer filter_by_author) throws WeiboException {
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/to_me.json",
new PostParameter[] {
new PostParameter("filter_by_source", filter_by_source
.toString()),
new PostParameter("filter_by_author", filter_by_author
.toString()) }, page, access_token));
}
示例4: getCommentTimeline
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 获取当前登录用户的最新评论包括接收到的与发出的
*
* @param map
* 参数列表
* @return
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.2
* @see http://open.weibo.com/wiki/2/comments/timeline
* @since JDK 1.5
*/
public CommentWapper getCommentTimeline(Map<String, String> map)
throws WeiboException {
PostParameter[] parList = ArrayUtils.mapToArray(map);
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/timeline.json", parList,
access_token));
}
示例5: getCommentMentions
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 获取最新的提到当前登录用户的评论,即@我的评论
*
* @param count
* 单页返回的记录条数,默认为50。
* @param page
* 返回结果的页码,默认为1。
* @param filter_by_author
* 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
* @param filter_by_source
* 来源筛选类型,0:全部、1:来自微博的评论、2:来自微群的评论,默认为0。
* @return list of Comment
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.1
* @see http://open.weibo.com/wiki/2/comments/mentions
* @since JDK 1.5
*/
public CommentWapper getCommentMentions(Paging page,
Integer filter_by_source, Integer filter_by_author)
throws WeiboException {
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/mentions.json",
new PostParameter[] {
new PostParameter("filter_by_source", filter_by_source
.toString()),
new PostParameter("filter_by_author", filter_by_author
.toString()) }, page, access_token));
}
示例6: getCommentById
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 根据微博ID返回某条微博的评论列表
*
* @param id
* 需要查询的微博ID
* @param count
* 单页返回的记录条数,默认为50。
* @param page
* 返回结果的页码,默认为1。
* @param filter_by_author
* 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
* @return list of Comment
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.1
* @see <a
* href="http://open.weibo.com/wiki/2/comments/show">comments/show</a>
* @since JDK 1.5
*/
public CommentWapper getCommentById(String id, Paging page,
Integer filter_by_author) throws WeiboException {
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/show.json",
new PostParameter[] {
new PostParameter("id", id),
new PostParameter("filter_by_author", filter_by_author.toString()) }, page));
}
示例7: getCommentByMe
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 获取当前登录用户所发出的评论列表
*
* @param count
* 单页返回的记录条数,默认为50
* @param page
* 返回结果的页码,默认为1
* @param filter_by_source
* 来源筛选类型,0:全部、1:来自微博的评论、2:来自微群的评论,默认为0
* @return list of Comment
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.1
* @see <a
* href="http://open.weibo.com/wiki/2/comments/by_me">comments/by_me</a>
* @since JDK 1.5
*/
public CommentWapper getCommentByMe(Paging page, Integer filter_by_source)
throws WeiboException {
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/by_me.json",
new PostParameter[] { new PostParameter("filter_by_author",
filter_by_source.toString()) }, page));
}
示例8: getCommentToMe
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 获取当前登录用户所接收到的评论列表
*
* @param count
* 单页返回的记录条数,默认为50。
* @param page
* 返回结果的页码,默认为1。
* @param filter_by_author
* 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
* @param filter_by_source
* 来源筛选类型,0:全部、1:来自微博的评论、2:来自微群的评论,默认为0。
* @return list of Comment
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.1
* @see <a
* href="http://open.weibo.com/wiki/2/comments/to_me">comments/to_me</a>
* @since JDK 1.5
*/
public CommentWapper getCommentToMe(Paging page, Integer filter_by_source,
Integer filter_by_author) throws WeiboException {
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/to_me.json",
new PostParameter[] {
new PostParameter("filter_by_source", filter_by_source
.toString()),
new PostParameter("filter_by_author", filter_by_author
.toString()) }, page));
}
示例9: getCommentMentions
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 获取最新的提到当前登录用户的评论,即@我的评论
*
* @param count
* 单页返回的记录条数,默认为50。
* @param page
* 返回结果的页码,默认为1。
* @param filter_by_author
* 作者筛选类型,0:全部、1:我关注的人、2:陌生人,默认为0。
* @param filter_by_source
* 来源筛选类型,0:全部、1:来自微博的评论、2:来自微群的评论,默认为0。
* @return list of Comment
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.1
* @see <a
* href="http://open.weibo.com/wiki/2/comments/mentions">comments/mentions</a>
* @since JDK 1.5
*/
public CommentWapper getCommentMentions(Paging page,
Integer filter_by_source, Integer filter_by_author)
throws WeiboException {
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/mentions.json",
new PostParameter[] {
new PostParameter("filter_by_source", filter_by_source
.toString()),
new PostParameter("filter_by_author", filter_by_author
.toString()) }, page));
}
示例10: getCommentTimeline
import weibo4j.model.Comment; //导入方法依赖的package包/类
/**
* 获取当前登录用户的最新评论包括接收到的与发出的
*
* @return list of Comment
* @throws WeiboException
* when Weibo service or network is unavailable
* @version weibo4j-V2 1.0.1
* @see <a
* href="http://open.weibo.com/wiki/2/comments/timeline">comments/timeline</a>
* @since JDK 1.5
*/
public CommentWapper getCommentTimeline() throws WeiboException {
return Comment.constructWapperComments(client.get(WeiboConfig
.getValue("baseURL") + "comments/timeline.json"));
}