OhMyGPT公开API文档
  1. 搜索API
OhMyGPT公开API文档
  • 本站介绍
  • 更新日志
  • 新版网站介绍
  • 自助开票系统使用文档
  • Telegram Bot使用文档
  • 自建Cloudflare Worker反代教程
  • OhMyGPT Socket.IO 实时端点 [Alpha开放中]
  • Files文件存储服务 开放API
    • 文件存储服务
    • 文件上传
      POST
    • 文件信息更新
      POST
    • 删除文件
      POST
    • 用户查询 (分页)
      POST
    • 用户元数据查询 (by fileUinqueIds)
      POST
    • 文件下载接口(Public公开文件下载)
      GET
    • 文件下载接口(Private私有文件下载)
      GET
  • OAuth开放API
    • 开放OAuth API介绍
    • 用户授权页
      GET
    • Code展示页
      GET
    • 申请access_token
      POST
    • 读取用户基本信息
      POST
    • 读取用户余额信息
      POST
    • 收取用户费用
      POST
    • 为用户创建一个Stripe Checkout充值订单
      POST
    • 为用户创建一个Stripe Invoice充值订单
      POST
    • 调用其它开放API
      POST
    • 通过OAuth Token读取用户管理Token
      POST
    • 通过OAuth Token更新用户管理Token
      POST
  • Midjourney、SD图像生成 API
    • Midjourney开放API接口
      • Midjourney服务说明文档
      • Midjourney 文生图 任务创建
      • Midjourney 执行动作 任务创建
      • Midjourney Blend 混合图生图 任务创建
      • Midjourney Describe prompt提取 任务创建
      • Midjourney 查询指定任务ID 的执行状态
      • Midjourney 分页批量查询任务
      • 从对象存储获取Midjourney生成的图片
      • 通过WSRV反代Discord图片
      • 通过WSRV反代并压缩Discord图片
      • 从对象存储+WSRV获取Midjourney生成的图片
      • 从对象存储+WSRV获取Midjourney生成的图片(压缩)
    • 其它图像生成API
      • ND图像生成 API
    • Flux图像生成
      • Flux Schnell 图像生成
      • Flux Dev 图像生成
      • Flux Pro 图像生成
      • Flux Pro 1.1 图像生成
      • Flux 1.1 Pro Ultura 图像生成
  • 管理API列表
    • 创建新的API Key
    • 修改API Key信息
    • 查询用户所有的API Key
    • 删除指定API Key
    • 查询用户会员到期日期接口
    • 用户余额查询接口
    • 查询当前模型倍率接口
  • Claude
    • Anthropic 原生 Messages API
    • Anthropic 原生 Completions 企业商用 API
    • Anthropic 原生 Messages Token Count API
  • OpenAI
    • 关于OpenAI兼容API接口说明
    • 关于Azure OpenAI API接口服务说明
    • Audio
      • TTS文本转语音服务
    • Chat
      • Chat Completion
      • Completion (Legacy)
    • Images
      • 图像生成
      • Image Edit
    • Embeddings
      • Embeddings
    • Realtime 实时通话端点
    • Models
  • 其它开放API
    • 搜索API
      • Google Custom Search API
        GET
      • Google Search By Serper
        POST
    • Azure API
      • Azure 文本转语音
      • Azure 获取TTS 语音列表
  1. 搜索API

Google Custom Search API

line1
https://cn2us02.opapi.win
line1
https://cn2us02.opapi.win
GET
/api/v1/openapi/search/google-search/v1

Google Custom Search API#

为方便广大开发者将谷歌搜索能力接入到您的项目中,同时为了下一步的联网LLM服务推出做铺垫,现推出了谷歌官方搜索API转发服务。您现在可以直接在我们的站点调用接近原版的Google Custom Search JSON API。

主要特性#

兼容性:直接在本站调用官方Google Custom Search API,理论上可以直接兼容原有的支持Google搜索API的程序。
成本效率:默认提供查询结果的缓存功能,从而降低使用成本,提高查询效率。
适用性:为下一步的大语言模型的联网功能做铺垫。

使用注意事项#

与官方原版API相比,存在以下区别:
1.
key 参数(可选):
该参数对应您在本站“设置”页面中获取到的APIKey。
如果您直接以Bearer规范将您的Key放到请求头中,则此参数可以省略。
2.
cache 参数(可选):
为了降低使用成本,默认提供查询结果的缓存功能。
默认情况下,认为相同查询条件下,3天内的缓存结果为有效。
当命中缓存时,您的请求将不会被收取费用。
参数可缺省,设置为0表示禁用缓存,最小值0,最大值30。
3.
cx 参数(可选):
默认此参数将会被设置为 73d45d507c0b2430e。
可缺省,推荐缺省或填写为此值。
不同的 cx 值也会影响缓存命中。
除了以上这些,其它参数功能和用法完全一致(Tip:q参数就是查询参数了,必填,把关键词放进去就可以查了。)
Curl示例

官方文档#

Google官方开发文档:Google Custom Search API
Google官方参数说明文档:API参数说明

定价#

未命中缓存的成功的查询:1500代币/次
命中缓存的查询:免费

请求参数

Query 参数
key
string 
可选
您的API密钥(需要勾选google-search-v1)
示例值:
{{sk}}
q
string 
您要搜索的内容
可选
示例值:
什么是芝士雪豹

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://cn2us02.opapi.win/api/v1/openapi/search/google-search/v1?key=&q=什么是芝士雪豹'

返回响应

🟢200成功
application/json
Body
object {0}
示例
{
  "kind": "customsearch#search",
  "url": {
    "type": "application/json",
    "template": "https://www.googleapis.com/customsearch/v1?q={searchTerms}&num={count?}&start={startIndex?}&lr={language?}&safe={safe?}&cx={cx?}&sort={sort?}&filter={filter?}&gl={gl?}&cr={cr?}&googlehost={googleHost?}&c2coff={disableCnTwTranslation?}&hq={hq?}&hl={hl?}&siteSearch={siteSearch?}&siteSearchFilter={siteSearchFilter?}&exactTerms={exactTerms?}&excludeTerms={excludeTerms?}&linkSite={linkSite?}&orTerms={orTerms?}&dateRestrict={dateRestrict?}&lowRange={lowRange?}&highRange={highRange?}&searchType={searchType}&fileType={fileType?}&rights={rights?}&imgSize={imgSize?}&imgType={imgType?}&imgColorType={imgColorType?}&imgDominantColor={imgDominantColor?}&alt=json"
  },
  "queries": {
    "request": [
      {
        "title": "Google Custom Search - 什么是芝士雪豹",
        "totalResults": "73900",
        "searchTerms": "什么是芝士雪豹",
        "count": 10,
        "startIndex": 1,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "73d45d507c0b2430e"
      }
    ],
    "nextPage": [
      {
        "title": "Google Custom Search - 什么是芝士雪豹",
        "totalResults": "73900",
        "searchTerms": "什么是芝士雪豹",
        "count": 10,
        "startIndex": 11,
        "inputEncoding": "utf8",
        "outputEncoding": "utf8",
        "safe": "off",
        "cx": "73d45d507c0b2430e"
      }
    ]
  },
  "context": {
    "title": "DogeNet Search"
  },
  "searchInformation": {
    "searchTime": 0.335479,
    "formattedSearchTime": "0.34",
    "totalResults": "73900",
    "formattedTotalResults": "73,900"
  },
  "items": [
    {
      "kind": "customsearch#result",
      "title": "芝士雪豹是什么梗? - narita 的回答- 知乎",
      "htmlTitle": "<b>芝士雪豹</b>是什么梗? - narita 的回答- 知乎",
      "link": "https://www.zhihu.com/question/548907903/answer/2633304852",
      "displayLink": "www.zhihu.com",
      "snippet": "Aug 17, 2022 ... 芝士雪豹原为丁真在参与的节目中说的一段话:“这是雪豹。”由于其普通话不够标准,导致听起来像“芝士雪豹”,最后被贴吧网友和丁真宇宙表情包爱好者发扬光大 ...",
      "htmlSnippet": "Aug 17, 2022 <b>...</b> <b>芝士雪豹</b>原为丁真在参与的节目中说的一段话:“这是<b>雪豹</b>。”由于其普通话不够标准,导致听起来像“<b>芝士雪豹</b>”,最后被贴吧网友和丁真宇宙表情包爱好者发扬光大&nbsp;...",
      "cacheId": "zEVGX2_7RHwJ",
      "formattedUrl": "https://www.zhihu.com/question/548907903/answer/2633304852",
      "htmlFormattedUrl": "https://www.zhihu.com/question/548907903/answer/2633304852",
      "pagemap": {
        "question": [
          {
            "commentcount": "4",
            "keywords": "抖音,豹猫,雪豹,理塘丁真,芝士雪豹",
            "answercount": "177",
            "datemodified": "2022-08-18T17:33:19.000Z",
            "name": "芝士雪豹是什么梗?",
            "datecreated": "2022-08-18T02:23:20.000Z",
            "text": "芝士雪豹,原为一次丁真在参与的节目中因普通话不标准而被网友空耳描述的谐音梗,但随着近期的抖音直播PK,芝士雪豹已不仅仅作为一个谐音梗出...",
            "url": "https://www.zhihu.com/question/548907903"
          }
        ],
        "answer": [
          {
            "upvotecount": "727",
            "commentcount": "65",
            "datemodified": "2022-08-22T12:18:16.000Z",
            "datecreated": "2022-08-18T10:54:16.000Z",
            "text": "简述:芝士雪豹原为丁真在参与的节目中说的一段话:“这是雪豹。”由于其普通话不够标准,导致听起来像“芝士雪豹”,最后被贴吧网友和丁真...",
            "url": "https://www.zhihu.com/question/548907903/answer/2633304852"
          },
          {
            "upvotecount": "5330",
            "commentcount": "64",
            "datemodified": "2022-11-16T10:29:19.000Z",
            "datecreated": "2022-10-18T15:43:56.000Z",
            "text": "我尝试在一堆散文和小说里寻找答案,我感觉在做阅读理解一样",
            "url": "https://www.zhihu.com/question/548907903/answer/2720903646"
          },
          {
            "upvotecount": "5259",
            "commentcount": "116",
            "datemodified": "2022-08-24T05:20:59.000Z",
            "datecreated": "2022-08-20T01:59:35.000Z",
            "text": "雪豹并不懂那些人们所说的话,大雪时节阿妈依旧五六点起床给电子烟充电,雪豹发了疯般的叫,丁真大喊着雪豹闭嘴,雪豹转过头看向远处的雪山...",
            "url": "https://www.zhihu.com/question/548907903/answer/2635822048"
          }
        ],
        "person": [
          {
            "image": "https://pic1.zhimg.com/v2-74fdd2d76626ad421009f0e4a852bc02_l.jpg?source=2c26e567",
            "name": "narita",
            "url": "https://www.zhihu.com/people/chen-hao-92-17"
          },
          {
            "image": "https://picx.zhimg.com/v2-9fd6fa3c76c1e2da61a1eaccd192054c_l.jpg?source=1def8aca",
            "name": "涸岸寒",
            "url": "https://www.zhihu.com/people/91-46-17-64"
          },
          {
            "image": "https://picx.zhimg.com/v2-d41c2ceaed8f51999522f903672a521f_l.jpg?source=1def8aca",
            "name": "匿名用户",
            "url": "https://www.zhihu.com/people/"
          }
        ],
        "metatags": [
          {
            "renderer": "webkit",
            "viewport": "width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover",
            "force-rendering": "webkit"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "雪豹闭嘴是什么梗?雪豹闭嘴梗意思出处内涵介绍|ash|土拨鼠|狐狸|猞 ...",
      "htmlTitle": "<b>雪豹</b>闭嘴是什么梗?<b>雪豹</b>闭嘴梗意思出处内涵介绍|ash|土拨鼠|狐狸|猞 ...",
      "link": "https://www.163.com/dy/article/HF54B57D0552M4EG.html",
      "displayLink": "www.163.com",
      "snippet": "Aug 19, 2022 ... 芝士雪豹是“这是雪豹”的意思。 来源于丁真参加的一档节目,在节目上丁真听声音就能辨别动物。 听到雪豹的声音丁 ...",
      "htmlSnippet": "Aug 19, 2022 <b>...</b> <b>芝士雪豹</b>是“这是<b>雪豹</b>”的意思。 来源于丁真参加的一档节目,在节目上丁真听声音就能辨别动物。 听到<b>雪豹</b>的声音丁&nbsp;...",
      "cacheId": "tfXC0P6zbs4J",
      "formattedUrl": "https://www.163.com/dy/article/HF54B57D0552M4EG.html",
      "htmlFormattedUrl": "https://www.163.com/dy/article/HF54B57D0552M4EG.html",
      "pagemap": {
        "metatags": [
          {
            "og:image": "https://nimg.ws.126.net/?url=http%3A%2F%2Fdingyue.ws.126.net%2F2022%2F0819%2F80e80638j00rguq0r000tc000jh00cam.jpg&thumbnail=750x2147483647&quality=75&type=jpg",
            "theme-color": "#ef4645",
            "og:type": "news",
            "article:published_time": "2022-08-19T15:26:52+08:00",
            "og:title": "雪豹闭嘴是什么梗?雪豹闭嘴梗意思出处内涵介绍_手机网易网",
            "og:release_date": "2022-08-19T15:26:52+08:00",
            "og:description": "雪豹闭嘴是最近很火的梗,但还有不少小伙伴不清楚雪豹闭嘴是什么梗,出自哪里,下面小编为大家带来了雪豹闭嘴梗的介绍,想了解的小伙伴快来看看吧。雪豹闭嘴是什么梗一、雪豹闭嘴梗雪豹闭嘴出自抖音主播@ash-1直播时的整活。",
            "article:author": "文娱前线",
            "article:tag": "雪豹,猞猁,土拨鼠,ash,狐狸",
            "apple-mobile-web-app-status-bar-style": "default",
            "viewport": "width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no, viewport-fit=cover",
            "apple-mobile-web-app-capable": "yes",
            "mobile-web-app-capable": "yes",
            "format-detection": "telephone=no"
          }
        ],
        "cse_image": [
          {
            "src": "https://nimg.ws.126.net/?url=http%3A%2F%2Fdingyue.ws.126.net%2F2022%2F0819%2F80e80638j00rguq0r000tc000jh00cam.jpg&thumbnail=750x2147483647&quality=75&type=jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "芝士雪豹是什么梗-芝士雪豹含义介绍_3DM手游",
      "htmlTitle": "<b>芝士雪豹</b>是什么梗-<b>芝士雪豹</b>含义介绍_3DM手游",
      "link": "https://shouyou.3dmgame.com/gl/413661.html",
      "displayLink": "shouyou.3dmgame.com",
      "snippet": "Sep 7, 2022 ... 芝士雪豹是一个谐音梗,芝士雪豹是“这是雪豹”的意思。来源于丁真参加的一档节目,在节目上丁真听声音就能辨别动物。听到雪豹的声音丁真回答这是雪豹, ...",
      "htmlSnippet": "Sep 7, 2022 <b>...</b> <b>芝士雪豹</b>是一个谐音梗,<b>芝士雪豹</b>是“这是<b>雪豹</b>”的意思。来源于丁真参加的一档节目,在节目上丁真听声音就能辨别动物。听到<b>雪豹</b>的声音丁真回答这是<b>雪豹</b>,&nbsp;...",
      "cacheId": "n_MGuwfR4agJ",
      "formattedUrl": "https://shouyou.3dmgame.com/gl/413661.html",
      "htmlFormattedUrl": "https://shouyou.3dmgame.com/gl/413661.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ22whOy3KwISelM0O5KN4ifEN9wckKpulYt5b9I5ib4NTZLBAHKu46exPC",
            "width": "280",
            "height": "180"
          }
        ],
        "metatags": [
          {
            "viewport": "initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width",
            "wap-font-scale": "no"
          }
        ],
        "cse_image": [
          {
            "src": "https://syimg.3dmgame.com/uploadimg/upload/image/20220907/20220907112225_85506.png"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "芝士雪豹是什么意思?芝士雪豹是什么梗?-中华网河南",
      "htmlTitle": "<b>芝士雪豹</b>是什么意思?<b>芝士雪豹</b>是什么梗?-中华网河南",
      "link": "https://henan.china.com/m/news/ms/2023/0103/2530335667.html",
      "displayLink": "henan.china.com",
      "snippet": "Jan 3, 2023 ... 芝士雪豹是一个谐音梗,芝士雪豹是这是雪豹的意思。来源于丁真出席的一档节目,在节目上丁真听声响就能判别动物。听到雪豹的声响丁真应答这.",
      "htmlSnippet": "Jan 3, 2023 <b>...</b> <b>芝士雪豹</b>是一个谐音梗,<b>芝士雪豹</b>是这是<b>雪豹</b>的意思。来源于丁真出席的一档节目,在节目上丁真听声响就能判别动物。听到<b>雪豹</b>的声响丁真应答这.",
      "cacheId": "4Hs4CAAjjzcJ",
      "formattedUrl": "https://henan.china.com/m/news/ms/2023/0103/2530335667.html",
      "htmlFormattedUrl": "https://henan.china.com/m/news/ms/2023/0103/2530335667.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSYF4vsftE6hJ16c3W4hvhslkq1KVThEAXnBdXlzmNI8unYJJeqVRod2Bs",
            "width": "416",
            "height": "121"
          }
        ],
        "metatags": [
          {
            "viewport": "width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no",
            "apple-mobile-web-app-title": "中华网河南",
            "format-detection": "telephone=no"
          }
        ],
        "cse_image": [
          {
            "src": "https://henan.china.com/generation_img/16823237524543.jpg"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "芝士雪豹是什么梗,丁真芝士雪豹是什么意思?-今日头条",
      "htmlTitle": "<b>芝士雪豹</b>是什么梗,丁真<b>芝士雪豹</b>是什么意思?-今日头条",
      "link": "https://www.toutiao.com/article/7133141949527228968/",
      "displayLink": "www.toutiao.com",
      "snippet": "芝士雪豹梗出自丁真的一个节目,丁真因为之前住在山里所以能听到各种动物的声音,听多了之后就有了辨别动物声音的本领。在录制节目中节目组放各种动物的声音让丁真去猜,第 ...",
      "htmlSnippet": "<b>芝士雪豹</b>梗出自丁真的一个节目,丁真因为之前住在山里所以能听到各种动物的声音,听多了之后就有了辨别动物声音的本领。在录制节目中节目组放各种动物的声音让丁真去猜,第&nbsp;...",
      "cacheId": "BjwVcBASRW0J",
      "formattedUrl": "https://www.toutiao.com/article/7133141949527228968/",
      "htmlFormattedUrl": "https://www.toutiao.com/article/7133141949527228968/",
      "pagemap": {
        "metatags": [
          {
            "renderer": "webkit",
            "x5-orientation": "portrait",
            "viewport": "width=device-width,initial-scale=1,user-scalable=no,minimum-scale=1,maximum-scale=1,minimal-ui,viewport-fit=cover",
            "layoutmode": "standard",
            "screen-orientation": "portrait",
            "apple-mobile-web-app-capable": "yes",
            "wap-font-scale": "no",
            "imagemode": "force",
            "format-detection": "telephone=no"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "芝士雪豹(@wuyuanheng2) / X",
      "htmlTitle": "<b>芝士雪豹</b>(@wuyuanheng2) / X",
      "link": "https://twitter.com/wuyuanheng2",
      "displayLink": "twitter.com",
      "snippet": "芝士雪豹's posts ... 没人评价一下阿根廷吗安资入侵现实了? ... 我讨厌政治。 ... 是不是大部分大陸高中星期六都要上學? ... 齐齐哈尔34中体育馆楼顶坍塌事故11名学生死亡。 这 ...",
      "htmlSnippet": "<b>芝士雪豹</b>&#39;s posts ... 没人评价一下阿根廷吗安资入侵现实了? ... 我讨厌政治。 ... 是不是大部分大陸高中星期六都要上學? ... 齐齐哈尔34中体育馆楼顶坍塌事故11名学生死亡。 这&nbsp;...",
      "cacheId": "bydGHJM3RFoJ",
      "formattedUrl": "https://twitter.com/wuyuanheng2",
      "htmlFormattedUrl": "https://twitter.com/wuyuanheng2",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTOmBc5hcEHQLt1daQVeWNizFIfymdKwlfniztKNgYaERd7P2Oo64C3lms",
            "width": "200",
            "height": "200"
          }
        ],
        "imageobject": [
          {
            "contenturl": "https://pbs.twimg.com/media/F2w_isvXUAAsLG0.jpg",
            "width": "1152",
            "caption": "Image",
            "thumbnailurl": "https://pbs.twimg.com/media/F2w_isvXUAAsLG0?format=jpg&name=thumb"
          },
          {
            "contenturl": "https://pbs.twimg.com/media/F2SfgmkaAAAz86j.jpg",
            "width": "1079",
            "caption": "Image",
            "thumbnailurl": "https://pbs.twimg.com/media/F2SfgmkaAAAz86j?format=jpg&name=thumb"
          }
        ],
        "person": [
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1381523094087507974",
            "givenname": "🍐老师🔮",
            "additionalname": "pear14525902"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1676882249898401792",
            "givenname": "Ⓐ赛博骑士☭ ☢️核子可乐🥤",
            "additionalname": "cybermaster369"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1361527788562358273",
            "givenname": "谁将十万横扫三江",
            "additionalname": "Lslymlwxc"
          },
          {
            "identifier": "1500187102276833280",
            "givenname": "芝士雪豹",
            "additionalname": "wuyuanheng2"
          },
          {
            "identifier": "1381523094087507974",
            "givenname": "🍐老师🔮",
            "additionalname": "pear14525902"
          }
        ],
        "interactioncounter": [
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1730540558329012286/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1730540558329012286/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1730540558329012286/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1730540558329012286"
          },
          {
            "userinteractioncount": "1",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1718135439985672562/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1718135439985672562/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1718135439985672562/retweets/with_comments"
          },
          {
            "userinteractioncount": "1",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1718135439985672562"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1718135611432017978/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1718135611432017978/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1718135611432017978/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1718135611432017978"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1715673906819047830/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1715673906819047830/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1715673906819047830/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1715673906819047830"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1715671005362851992/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1715671005362851992/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1715671005362851992/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1715671005362851992"
          },
          {
            "userinteractioncount": "30",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/pear14525902/status/1715647774174437504/likes"
          },
          {
            "userinteractioncount": "4",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/pear14525902/status/1715647774174437504/retweets"
          },
          {
            "userinteractioncount": "1",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/pear14525902/status/1715647774174437504/retweets/with_comments"
          },
          {
            "userinteractioncount": "4",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/pear14525902/status/1715647774174437504"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1708870255576056125/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1708870255576056125/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1708870255576056125/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1708870255576056125"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1707408967599849744/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1707408967599849744/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1707408967599849744/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1707408967599849744"
          },
          {
            "userinteractioncount": "1",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1700492386772939201/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1700492386772939201/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1700492386772939201/retweets/with_comments"
          },
          {
            "userinteractioncount": "1",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1700492386772939201"
          },
          {
            "userinteractioncount": "2",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1700492389687927212/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1700492389687927212/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1700492389687927212/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1700492389687927212"
          },
          {
            "userinteractioncount": "1",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1697997987526406407/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1697997987526406407/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1697997987526406407/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1697997987526406407"
          },
          {
            "userinteractioncount": "1",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1695592541750690032/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1695592541750690032/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1695592541750690032/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1695592541750690032"
          },
          {
            "userinteractioncount": "61",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/cybermaster369/status/1693464038163005587/likes"
          },
          {
            "userinteractioncount": "9",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/cybermaster369/status/1693464038163005587/retweets"
          },
          {
            "userinteractioncount": "4",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/cybermaster369/status/1693464038163005587/retweets/with_comments"
          },
          {
            "userinteractioncount": "8",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/cybermaster369/status/1693464038163005587"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1693830774494020061/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1693830774494020061/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1693830774494020061/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1693830774494020061"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1687793837953978368/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1687793837953978368/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1687793837953978368/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1687793837953978368"
          },
          {
            "userinteractioncount": "1",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/wuyuanheng2/status/1687792749309743104/likes"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/wuyuanheng2/status/1687792749309743104/retweets"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/wuyuanheng2/status/1687792749309743104/retweets/with_comments"
          },
          {
            "userinteractioncount": "0",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/wuyuanheng2/status/1687792749309743104"
          },
          {
            "userinteractioncount": "2637",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/Lslymlwxc/status/1685647932970979328/likes"
          },
          {
            "userinteractioncount": "336",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/Lslymlwxc/status/1685647932970979328/retweets"
          },
          {
            "userinteractioncount": "10",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/Lslymlwxc/status/1685647932970979328/retweets/with_comments"
          },
          {
            "userinteractioncount": "129",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/Lslymlwxc/status/1685647932970979328"
          },
          {
            "userinteractioncount": "33",
            "interactiontype": "https://schema.org/LikeAction",
            "name": "Likes",
            "url": "https://twitter.com/pear14525902/status/1684810771346460672/likes"
          },
          {
            "userinteractioncount": "2",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Retweets",
            "url": "https://twitter.com/pear14525902/status/1684810771346460672/retweets"
          },
          {
            "userinteractioncount": "1",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Quotes",
            "url": "https://twitter.com/pear14525902/status/1684810771346460672/retweets/with_comments"
          },
          {
            "userinteractioncount": "17",
            "interactiontype": "https://schema.org/InteractAction",
            "name": "Replies",
            "url": "https://twitter.com/pear14525902/status/1684810771346460672"
          }
        ],
        "metatags": [
          {
            "og:image": "https://pbs.twimg.com/profile_images/1560958523747737600/4uFRkyu8_200x200.jpg",
            "theme-color": "#FFFFFF",
            "og:type": "profile",
            "og:site_name": "X (formerly Twitter)",
            "al:ios:app_name": "X",
            "apple-mobile-web-app-title": "Twitter",
            "og:title": "芝士雪豹 (@wuyuanheng2) on X",
            "al:android:package": "com.twitter.android",
            "al:ios:url": "twitter://user?screen_name=wuyuanheng2",
            "title": "芝士雪豹 (@wuyuanheng2) on X",
            "og:description": "地球早该爆炸了",
            "al:ios:app_store_id": "333903271",
            "facebook-domain-verification": "x6sdcc8b5ju3bh8nbm59eswogvg6t1",
            "al:android:url": "twitter://user?screen_name=wuyuanheng2",
            "fb:app_id": "2231777543",
            "apple-mobile-web-app-status-bar-style": "white",
            "viewport": "width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover",
            "mobile-web-app-capable": "yes",
            "og:url": "https://twitter.com/wuyuanheng2",
            "al:android:app_name": "X"
          }
        ],
        "collection": [
          {
            "name": "Profile posts"
          }
        ],
        "creativework": [
          {
            "name": "Expanded Tweet URLs",
            "url": "https://t.co/NjjYI1OYJd"
          },
          {
            "name": "Expanded Tweet URLs",
            "url": "https://t.co/HORvhNEmLy"
          }
        ],
        "cse_image": [
          {
            "src": "https://pbs.twimg.com/profile_images/1560958523747737600/4uFRkyu8_200x200.jpg"
          }
        ],
        "socialmediaposting": [
          {
            "identifier": "1730540558329012286",
            "commentcount": "0",
            "articlebody": "没人评价一下阿根廷吗安资入侵现实了?",
            "position": "1",
            "datecreated": "2023-12-01T10:53:15.000Z",
            "datepublished": "2023-12-01T10:53:15.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1730540558329012286"
          },
          {
            "identifier": "1718135439985672562",
            "commentcount": "1",
            "articlebody": "累了",
            "position": "2",
            "datecreated": "2023-10-28T05:19:44.000Z",
            "datepublished": "2023-10-28T05:19:44.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1718135439985672562"
          },
          {
            "identifier": "1718135611432017978",
            "commentcount": "0",
            "articlebody": "我要站在珠穆朗玛峰顶唱摇滚我要在窒息与自由中走向混沌站在世界之上平视太阳你战胜不了的不只是亘古的雪还有少年炽热的心脏照亮你也会被照...",
            "ispartof": "https://twitter.com/wuyuanheng2/status/1718135439985672562",
            "position": "3",
            "datecreated": "2023-10-28T05:20:25.000Z",
            "datepublished": "2023-10-28T05:20:25.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1718135611432017978"
          },
          {
            "identifier": "1715673906819047830",
            "commentcount": "0",
            "articlebody": "我讨厌政治。",
            "position": "4",
            "datecreated": "2023-10-21T10:18:29.000Z",
            "datepublished": "2023-10-21T10:18:29.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1715673906819047830"
          },
          {
            "identifier": "1715671005362851992",
            "commentcount": "0",
            "articlebody": "“睡8小时,而不是6小时锻炼1小时,而不是4小时学习3小时,而不是10小时阅读2小时,而不是5小时深度工作3小时,而不是12小时你是人,而不是机器”",
            "position": "5",
            "datecreated": "2023-10-21T10:06:57.000Z",
            "datepublished": "2023-10-21T10:06:57.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1715671005362851992"
          },
          {
            "identifier": "1715666954793463881",
            "position": "6",
            "datecreated": "2023-10-21T09:50:52.000Z",
            "datepublished": "2023-10-21T09:50:52.000Z"
          },
          {
            "identifier": "1715647774174437504",
            "commentcount": "4",
            "articlebody": "我就从来没有见过网上的人有好心情",
            "ispartof": "https://twitter.com/chishengyu628/status/1715644704090697796",
            "datecreated": "2023-10-21T08:34:39.000Z",
            "datepublished": "2023-10-21T08:34:39.000Z",
            "url": "https://twitter.com/pear14525902/status/1715647774174437504"
          },
          {
            "identifier": "1708870255576056125",
            "commentcount": "0",
            "articlebody": "坏消息:号被盗了好消息:只卖了俩箱子坏消息:号里只有俩箱子",
            "position": "7",
            "datecreated": "2023-10-02T15:43:12.000Z",
            "datepublished": "2023-10-02T15:43:12.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1708870255576056125"
          },
          {
            "identifier": "1707408967599849744",
            "commentcount": "0",
            "articlebody": "第一次线下见傻逼魔怔左左壬恶心😅",
            "position": "8",
            "datecreated": "2023-09-28T14:56:34.000Z",
            "datepublished": "2023-09-28T14:56:34.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1707408967599849744"
          },
          {
            "identifier": "1700492386772939201",
            "commentcount": "1",
            "articlebody": "前两年还是粉红的时候给🐱写的诗发出来丢丢脸💧💧",
            "position": "9",
            "datecreated": "2023-09-09T12:52:33.000Z",
            "datepublished": "2023-09-09T12:52:33.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1700492386772939201"
          },
          {
            "identifier": "1700492389687927212",
            "commentcount": "0",
            "articlebody": "沁园春·怀润之大国泱泱外番乱朝内贼掩光叹举国上下前路茫茫湘江南北血流汤汤星点遵义火燃井冈风起野草燎原烧醒黎民领百万雄师驱鼠夷岛春风略...",
            "ispartof": "https://twitter.com/wuyuanheng2/status/1700492386772939201",
            "position": "10",
            "datecreated": "2023-09-09T12:52:33.000Z",
            "datepublished": "2023-09-09T12:52:33.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1700492389687927212"
          },
          {
            "identifier": "1697997987526406407",
            "commentcount": "0",
            "articlebody": "哈哈",
            "position": "11",
            "datecreated": "2023-09-02T15:40:42.000Z",
            "isbasedon": "https://twitter.com/lainlain8964/status/1697955523025629617",
            "datepublished": "2023-09-02T15:40:42.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1697997987526406407"
          },
          {
            "identifier": "1695592541750690032",
            "commentcount": "0",
            "articlebody": "所以核废水到底有什么影响",
            "position": "12",
            "datecreated": "2023-08-27T00:22:19.000Z",
            "datepublished": "2023-08-27T00:22:19.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1695592541750690032"
          },
          {
            "identifier": "1693831154590220553",
            "position": "13",
            "datecreated": "2023-08-22T03:43:11.000Z",
            "datepublished": "2023-08-22T03:43:11.000Z"
          },
          {
            "identifier": "1693464038163005587",
            "commentcount": "8",
            "articlebody": "敌人越指责我,越是说明我做对了敌人认同我,说明我正确得连敌人都认同了敌人无视我,说明我正确得让敌人无话可说朋友认同我,因为我做对了...",
            "datecreated": "2023-08-21T03:24:24.000Z",
            "datepublished": "2023-08-21T03:24:24.000Z",
            "url": "https://twitter.com/cybermaster369/status/1693464038163005587"
          },
          {
            "identifier": "1693830774494020061",
            "commentcount": "0",
            "articlebody": "傻逼高中",
            "position": "14",
            "datecreated": "2023-08-22T03:41:41.000Z",
            "datepublished": "2023-08-22T03:41:41.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1693830774494020061"
          },
          {
            "identifier": "1687793837953978368",
            "commentcount": "0",
            "articlebody": "犯我中华者,虽远必诛🤛😠🤚",
            "position": "15",
            "datecreated": "2023-08-05T11:53:03.000Z",
            "datepublished": "2023-08-05T11:53:03.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1687793837953978368"
          },
          {
            "identifier": "1687792749309743104",
            "commentcount": "0",
            "articlebody": "出去旅游出租车司机从文化大革命聊到8964😨",
            "position": "16",
            "datecreated": "2023-08-05T11:48:43.000Z",
            "datepublished": "2023-08-05T11:48:43.000Z",
            "url": "https://twitter.com/wuyuanheng2/status/1687792749309743104"
          },
          {
            "identifier": "1685945307639459840",
            "position": "17",
            "datecreated": "2023-07-31T09:27:39.000Z",
            "datepublished": "2023-07-31T09:27:39.000Z"
          },
          {
            "identifier": "1685647932970979328",
            "commentcount": "129",
            "articlebody": "齐齐哈尔34中体育馆楼顶坍塌事故11名学生死亡。 这两天突然涌出来一些人,大骂齐齐哈尔那学校门前的花、罐头、奶茶是“浪费”。 什么是浪费?...",
            "datecreated": "2023-07-30T13:45:59.000Z",
            "datepublished": "2023-07-30T13:45:59.000Z",
            "url": "https://twitter.com/Lslymlwxc/status/1685647932970979328"
          },
          {
            "identifier": "1684908323114786816",
            "position": "18",
            "datecreated": "2023-07-28T12:47:02.000Z",
            "datepublished": "2023-07-28T12:47:02.000Z"
          },
          {
            "identifier": "1684810771346460672",
            "commentcount": "17",
            "articlebody": "自由派拿《毛泽东私人医生》借毛泽东的道德污点(先不管是真的还是假的)来攻击毛泽东的政治思想,这是很荒谬的,就算书里讲的是真的又怎么...",
            "datecreated": "2023-07-28T06:19:24.000Z",
            "datepublished": "2023-07-28T06:19:24.000Z",
            "url": "https://twitter.com/pear14525902/status/1684810771346460672"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "芝士雪豹-西瓜视频搜索",
      "htmlTitle": "<b>芝士雪豹</b>-西瓜视频搜索",
      "link": "https://m.ixigua.com/s/%E8%8A%9D%E5%A3%AB%E9%9B%AA%E8%B1%B9",
      "displayLink": "m.ixigua.com",
      "snippet": "雪豹雪豹闭嘴是什么梗?什么是芝士雪豹? 江湖百晓生呀. 9.1万次播放· 2022-08-29. 年度最佳整活:丁真和他的芝士雪豹,雪豹闭 05:57 ...",
      "htmlSnippet": "雪豹雪豹闭嘴是什么梗?<b>什么是芝士雪豹</b>? 江湖百晓生呀. 9.1万次播放· 2022-08-29. 年度最佳整活:丁真和他的芝士雪豹,雪豹闭 05:57&nbsp;...",
      "cacheId": "8HFV_oA77isJ",
      "formattedUrl": "https://m.ixigua.com/s/芝士雪豹",
      "htmlFormattedUrl": "https://m.ixigua.com/s/<b>芝士雪豹</b>",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTAxgXeO1I5KZBjyt5ce8WQ8S4hgwzuy8uPY9z-CeLhKngLoaWUz68h2JYK",
            "width": "190",
            "height": "266"
          }
        ],
        "metatags": [
          {
            "referrer": "no-referrer-when-downgrade",
            "preconnect": "//lf3-cdn-tos.bdxiguastatic.com/obj/ixigua-static/xigua-wap",
            "renderer": "webkit",
            "dns-prefetch": "//lf3-cdn-tos.bdxiguastatic.com/obj/ixigua-static/xigua-wap",
            "viewport": "width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,minimal-ui",
            "layoutmode": "standard",
            "applicable-device": "mobile",
            "wap-font-scale": "no",
            "shenma-site-verification": "29c0aa1f3f140019a1e87491da02bae4_1598265499",
            "imagemode": "force",
            "format-detection": "telephone=no"
          }
        ],
        "cse_image": [
          {
            "src": "https://p6-sign.bdxiguaimg.com/tos-cn-i-y6wrso9qyk/b8e18d4f0be048a4a5fc5d0065f02b6a~tpl-1_480x0_q75.jpeg?lk3s=5d9e4822&x-expires=1705668683&x-signature=fgNsaTTvRrh9CiwK0UXtbfhHB8k%3D"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "雪豹闭嘴什么意思丁真雪豹什么梗-游侠手游",
      "htmlTitle": "<b>雪豹</b>闭嘴什么意思丁真<b>雪豹</b>什么梗-游侠手游",
      "link": "https://app.ali213.net/gl/895595.html",
      "displayLink": "app.ali213.net",
      "snippet": "Aug 18, 2022 ... 芝士雪豹是“这是雪豹”的意思。 来源于丁真参加的一档节目,在节目上丁真听声音就能辨别动物。",
      "htmlSnippet": "Aug 18, 2022 <b>...</b> <b>芝士雪豹</b>是“这是<b>雪豹</b>”的意思。 来源于丁真参加的一档节目,在节目上丁真听声音就能辨别动物。",
      "cacheId": "dMRk9Qxmq_gJ",
      "formattedUrl": "https://app.ali213.net/gl/895595.html",
      "htmlFormattedUrl": "https://app.ali213.net/gl/895595.html",
      "pagemap": {
        "cse_thumbnail": [
          {
            "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgaUWesQWXpFJ6TIT5iqQwhaJbwcFX8uqde9--qPyVSKMmJHltCmwULapi",
            "width": "347",
            "height": "145"
          }
        ],
        "metatags": [
          {
            "apple-mobile-web-app-status-bar-style": "white",
            "viewport": "width=device-width,user-scalable=no,initial-scale=1, maximum-scale=1.0",
            "apple-mobile-web-app-capable": "yes",
            "format-detection": "address=no;email=no;telphone=no"
          }
        ],
        "cse_image": [
          {
            "src": "http://comment.ali213.net/images/hongbao.png"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "芝士雪豹是什么意思? - 有梗鸭",
      "htmlTitle": "<b>芝士雪豹</b>是什么意思? - 有梗鸭",
      "link": "https://www.cuiuc.com/thread-10633.htm/thread-895.htm",
      "displayLink": "www.cuiuc.com",
      "snippet": "芝士雪豹出自一档节目,丁真在一档节目中听声辨动物,由于普通话不标准,误将“这是雪豹”错读为“芝士雪豹”。也有相关梗“雪豹闭嘴”,普.",
      "htmlSnippet": "<b>芝士雪豹</b>出自一档节目,丁真在一档节目中听声辨动物,由于普通话不标准,误将“这是<b>雪豹</b>”错读为“<b>芝士雪豹</b>”。也有相关梗“<b>雪豹</b>闭嘴”,普.",
      "cacheId": "xuqtV4soJcYJ",
      "formattedUrl": "https://www.cuiuc.com/thread-10633.htm/thread-895.htm",
      "htmlFormattedUrl": "https://www.cuiuc.com/thread-10633.htm/thread-895.htm",
      "pagemap": {
        "metatags": [
          {
            "og:type": "acticle",
            "renderer": "webkit",
            "og:site_name": "有梗鸭 - 网络流行语百科全书",
            "viewport": "width=device-width, initial-scale=1, user-scalable=no",
            "og:title": "芝士雪豹",
            "og:url": "https://www.cuiuc.com/thread-895.htm",
            "og:description": "芝士雪豹出自一档节目,丁真在一档节目中听声辨动物,由于普通话不标准,误将“这是雪豹”错读为“芝士雪豹”。也有相关梗“雪豹闭嘴”,普"
          }
        ]
      }
    },
    {
      "kind": "customsearch#result",
      "title": "芝士雪豹是什么梗-飞时达",
      "htmlTitle": "<b>芝士雪豹</b>是什么梗-飞时达",
      "link": "http://www.bj-fyd.com/info/108024.html",
      "displayLink": "www.bj-fyd.com",
      "snippet": "Aug 9, 2023 ... 芝士雪豹从哪里来的? 来源于丁真参加的一档节目,在节目上丁真听声音就能辨别动物。 听到雪豹的声音丁真回答这是雪豹,但由于口音问题被观众听成芝士 ...",
      "htmlSnippet": "Aug 9, 2023 <b>...</b> <b>芝士雪豹</b>从哪里来的? 来源于丁真参加的一档节目,在节目上丁真听声音就能辨别动物。 听到<b>雪豹</b>的声音丁真回答这是<b>雪豹</b>,但由于口音问题被观众听成<b>芝士</b>&nbsp;...",
      "cacheId": "IEb2mN6zv5oJ",
      "formattedUrl": "http://www.bj-fyd.com/info/108024.html",
      "htmlFormattedUrl": "http://www.bj-fyd.com/info/108024.html",
      "pagemap": {
        "metatags": [
          {
            "viewport": "width=device-width,minimum-scale=1,initial-scale=1"
          }
        ]
      }
    }
  ]
}
上一页
Models
下一页
Google Search By Serper
Built with