We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python 版本: Python 3.11.6
模块版本: 16.2.0
运行环境: Windows
# bilibili_api/comment.py class Comment: def __init__( self, oid: int, type_: CommentResourceType, rpid: int, credential: Union[Credential, None] = None, ): async def get_sub_comments(self, page_index: int = 1) -> dict: async def get_comments( oid: int, type_: CommentResourceType, page_index: int = 1, order: OrderType = OrderType.TIME, credential: Union[Credential, None] = None, ) -> dict:
get_sub_comments 虽然可以获取到, 但是要遍历全部 get_comments 获取的是顶部回复 (root), 如果没有猜错的话, 因为这里没有 rpid
get_sub_comments
get_comments
所以, 貌似没有直接获取 rpid 评论内容的 API?
比如, 点赞的时候会发送以下 payload
POST https://api.bilibili.com/x/v2/reply/action oid=11324**********&type=1&rpid=24385*******&action=1&csrf=24565***************************
我想知道这里点赞 rpid 内容
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Python 版本: Python 3.11.6
模块版本: 16.2.0
运行环境: Windows
get_sub_comments
虽然可以获取到, 但是要遍历全部get_comments
获取的是顶部回复 (root), 如果没有猜错的话, 因为这里没有 rpid所以, 貌似没有直接获取 rpid 评论内容的 API?
比如, 点赞的时候会发送以下 payload
我想知道这里点赞 rpid 内容
The text was updated successfully, but these errors were encountered: