Thursday, February 15, 2018

Is there a Weibo share count endpoint

Leave a Comment

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 Answers

Answers 1

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
If You Enjoyed This, Take 5 Seconds To Share It

0 comments:

Post a Comment