google 是否允许企业将 "Did you Mean" 功能用作 api?我想使用它,但我什么也没得到

Does google allow businesses to use "Did you Mean" feature as an api?? I would like to use it but I am not getting anything

我想使用 Google API 作为您的意思吗功能。所以基本上我想写一段代码,它将一个词发送到 Google 搜索并且 Google 找到确切的匹配或给出我将使用的 "DID YOU MEAN" 回复。

它可用吗?试图找到它但找不到。

所以我投入了一些时间,这就是我的发现

1/ 你应该有自己的自定义搜索引擎

https://cse.google.com

2/ 配置搜索所有网站

https://support.google.com/customsearch/answer/2631040?hl=en

3/ 按照文档查询该引擎

https://developers.google.com/custom-search/json-api/v1/using_rest

拼写/您的意思是如果可能可以在 "spelling" 部分进行维修。 (删除了不相关的部分)。 Fox ex:我在这里搜索 "devart"

{
  "kind": "customsearch#search",
  "url": {
    },
  "queries": {
    "request": [
      
    ]
  },
  "context": {
    
  },
  "searchInformation": {
    
  },
  "spelling": {
    "correctedQuery": "deviantart",
    "htmlCorrectedQuery": "<b><i>deviantart</i></b>"
  },
  "items": [
    
  ]
}

我有同样的问题,当他们允许在网站上提出这些问题时,它也被否决了。您可能想在此处阅读有关自动完成 API 的信息

Google Search autocomplete API?