实体对象中带有符号字段的推文示例

A tweet example with symbols field in entities object

根据 Twitter (https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/entities-object),在实体对象中提交的 "symbols" 代表推文文本中包含的符号,即 $cashtags。但是,无论我试图找到具有 "symbol" 实体的推文示例,我都找不到。谁能给我看一条带有符号字段的推文?

如果您在 Twitter 上搜索 $TWTR 等任何股票代码,您应该会找到一些示例,例如:https://twitter.com/TEV_Capital/status/1173855569037295617

"entities": {
    "hashtags": [],
    "symbols": [
      {
        "text": "TWTR",
        "indices": [
          29,
          34
        ]
      },
      {
        "text": "AKAM",
        "indices": [
          35,
          40
        ]
      },
...