9

Long shot, but I'm looking for the Weibo version of these endpoints:

I've had a fruitless few hours searching and can't get anything, and am hoping somebody here might know.

Derek Johnson
  • 285
  • 6
  • 24

1 Answers1

3

Document: http://open.weibo.com/wiki/2/statuses/count

API Request URL: https://api.weibo.com/2/statuses/count.json

API Request Methon: GET

API Request Parameter:

  • access_token (required): get via OAuth.
  • ids (required): the weibo id to be queried. It concatenate ids by comma and can exceed 100 ids.

API Response:

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

API Response Parameters:

  • id (int64): the Weibo ID.
  • comments (int): the count of the comments
  • reposts (int): the count of the content be shared
  • attitudes (int): UNUSED
Wilhelm Liao
  • 829
  • 5
  • 12
  • how do I get the Weibo share count for an article URL? (not Weibo post) – Henley Feb 16 '18 at 19:00
  • here is the full api document url: http://open.weibo.com/wiki/%E5%BE%AE%E5%8D%9AAPI. I think `short_url/shorten` and `short_url/share/counts` can achieve your purposes. – Wilhelm Liao Feb 17 '18 at 01:25