是否有微博共享计数端点

时间:2015-11-24 22:30:45

标签: json social

远景,但我正在寻找这些端点的微博版本:

我有几个小时无法搜索,无法得到任何东西,我希望这里的人可能知道。

1 个答案:

答案 0 :(得分:3)

文件:http://open.weibo.com/wiki/2/statuses/count

API请求网址:https://api.weibo.com/2/statuses/count.json

API请求Methon:GET

API请求参数:

  • access_token(必填):通过OAuth获取。
  • ids(必填):要查询的微博ID。它用逗号连接id,可以超过100个ID。

API响应:

[
    {
        "id": "32817222",
        "comments": "16",
        "reposts": "38"
    },
   ...
]

API响应参数:

  • id (int64):微博ID。
  • 评论 (int):评论次数
  • 转发 (int):共享内容的数量
  • 态度 (int):UNUSED