0

我无法使用我的 ROR 应用程序的 twitter-gem 从 Twitter REST api 的 JSON 响应中获取转发的 favorite_count。对于转发的喜爱计数,响应返回 0。有没有办法从响应中获取这个值,或者它不支持它?

4

1 回答 1

0

Endpoint for it : https://api.twitter.com/1.1/statuses/retweets/:id.json

id : The numerical ID of the desired status.

Parameter : favorite_count.

A sample response:

    [
      {contributors":null,
       "coordinates":null,
       "created_at":"Tue Sep 09 23:44:05 +0000 2014",
       "entities":{  },
       "favorite_count":169,
       "favorited":false,
        ...
      }
    ]

For further info, visit official doc.

于 2016-11-03T22:42:20.730 回答