Twitter 中的整数和整数 API
Int and Integer in Twitter API
在 Twitter API (https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/tweet-object) 中,有些字段是 Int,有些是 Integer,它们是 Nullable。例如 retweet_count
是 Int,但 favourite_count
是 Integer(可空)。 favourite_count
为 Nullable 是什么意思?以及为什么 favourite_count
可以为 Nullable 而 retweet_count
不能?
几年前我在 Twitter 论坛上问过 similar question。
对于可扩展性,Twitter API 具有最终一致性。结果是有时您不会收到所有数据或数据尚未更新。
因此,某些字段被标记为nullable
,表示该字段可能有也可能没有数据,但我们在查询时不知道。
在 Twitter API (https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/tweet-object) 中,有些字段是 Int,有些是 Integer,它们是 Nullable。例如 retweet_count
是 Int,但 favourite_count
是 Integer(可空)。 favourite_count
为 Nullable 是什么意思?以及为什么 favourite_count
可以为 Nullable 而 retweet_count
不能?
几年前我在 Twitter 论坛上问过 similar question。
对于可扩展性,Twitter API 具有最终一致性。结果是有时您不会收到所有数据或数据尚未更新。
因此,某些字段被标记为nullable
,表示该字段可能有也可能没有数据,但我们在查询时不知道。