comments.show: Return comments of one weibo by the weibo ID.

Description Usage Arguments Value Author(s) References Examples

Description

Return comments of one weibo by the weibo ID.

Usage

1
comments.show(roauth, id, count = 20, page = 1, filter_by_author = 0, ...)

Arguments

roauth

A OAuth object created by createOAuth.

id

The weibo ID to be queried.

count

The returned count for every page.The default value is 20.

page

The returned page.The default value is 1.

filter_by_author

Return the comments by the owner type. 0 : all types; 1 : my friend; 2 : stranger; The default value is 0.

...

Other request parameters for this API.

Value

A list of weibos, each weibo contains:

idstr

Weibo ID of string

created_at

Created time

id

Weibo ID

text

Weibo content

source

Weibo source

mid

Weibo MID

user

User profile that posted the weibo

status

The weibo that is commented

reply_comment

Replied comment information

Author(s)

Jian Li <rweibo@sina.com>

References

http://open.weibo.com/wiki/2/comments/show

Examples

1
2
3
4
5
## Not run: 

comments.show(roauth, id = "3543748358960699", count = 5)

## End(Not run)

Rweibo documentation built on May 2, 2019, 5:23 p.m.

Related to comments.show in Rweibo...