Is there a Weibo share count endpoint

234 views Asked by At

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.

1

There are 1 answers

2
Wilhelm Liao On

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