获取用户粉丝列表
用户端点
获取用户粉丝列表
按 @handle 列出关注某个 X 用户的账号,最新关注者排在最前。
GET
获取用户粉丝列表
按 @handle 列出关注某个 X 用户的账号,最新关注者排在最前。
默认每页最多返回 200 条,并带
has_next_page 和 next_cursor;每个条目都是完整的用户对象(handle、名称、简介、粉丝数、认证状态)。适合用于受众分析、梳理竞品的粉丝构成,或找出有影响力的关注者。
如需反方向(该用户关注了谁),请使用 get_twitter_user_followings。如果只要认证账号子集,请使用 get_twitter_user_verified_followers——注意后者接受的是数字 user_id,而不是 handle。授权
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.