Twitter 搜索 API 响应?
Twitter search API response?
我无法理解,为什么"retweeted": false,尽管"retweet_count": 2?还是转推指向其他东西?
示例 API 响应:
"retweet_count": 2,
"retweeted": false,
"retweeted_status": {
"contributors": null,
"coordinates": null,
"created_at": "Wed Sep 26 10:47:11 +0000 2018",
"display_text_range": [
0,
90
],
"entities": {
"hashtags": [
{
"indices": [
83,
90
],
"text": "ESMO18"
}
],
"symbols": [],
"urls": [],
"user_mentions": [
{
"id": 69232855,
"id_str": "69232855",
"indices": [
12,
19
],
"name": "ESMO - Eur. Oncology",
"screen_name": "myESMO"
}
]
}
令人困惑 - 让我解释一下。
retweeted
属性 是验证用户是否转发了该特定推文。
所以如果你转发我,然后查看那条推文,你会看到 "retweeted": true,
它确实应该被称为 has_authenticating_user_retweeted_this
:-)
我无法理解,为什么"retweeted": false,尽管"retweet_count": 2?还是转推指向其他东西?
示例 API 响应:
"retweet_count": 2,
"retweeted": false,
"retweeted_status": {
"contributors": null,
"coordinates": null,
"created_at": "Wed Sep 26 10:47:11 +0000 2018",
"display_text_range": [
0,
90
],
"entities": {
"hashtags": [
{
"indices": [
83,
90
],
"text": "ESMO18"
}
],
"symbols": [],
"urls": [],
"user_mentions": [
{
"id": 69232855,
"id_str": "69232855",
"indices": [
12,
19
],
"name": "ESMO - Eur. Oncology",
"screen_name": "myESMO"
}
]
}
令人困惑 - 让我解释一下。
retweeted
属性 是验证用户是否转发了该特定推文。
所以如果你转发我,然后查看那条推文,你会看到 "retweeted": true,
它确实应该被称为 has_authenticating_user_retweeted_this
:-)