Google 搜索 API。过滤器许可证
Google search API. Filter license
我想在特定许可下使用 google API 搜索图像。但是查看 API 文档我无法理解如何正确使用它。
我要搜索:
- 免费使用或分享,甚至是商业用途
- 免费使用、分享或修改,甚至是商业用途
在我看到的文档中
- cc_publicdomain
- cc_attribute
- cc_sharealike
- cc_noncommercial
- cc_nonderived
https://developers.google.com/custom-search/json-api/v1/reference/cse/list
谁能告诉我我的请求应该是什么样的?
Official site of creative commons 包含每个 CC 许可类型的描述。
您可以使用 "cc_publicdomain"、"cc_attribute" 和 "cc_sharealike",例如“免费使用、共享或修改,甚至是商业用途”
和"cc_nonderived"就像“免费使用或共享,甚至是商业用途”。
要在请求中设置许可证,您可以使用 "rights" 参数并通过 url 编码逗号传递目标许可证类型。
就像在这个请求中一样:
GET https://www.googleapis.com/customsearch/v1?q=swollen+members+night+vision&cx=004646395488064118990%3Aachgbwsn6na&rights=cc_publicdomain%2Ccc_attribute&searchType=image&fields=items&key={YOUR_API_KEY}
也可以试试在线"any"google服务here and create usable to you requests here
我想在特定许可下使用 google API 搜索图像。但是查看 API 文档我无法理解如何正确使用它。 我要搜索:
- 免费使用或分享,甚至是商业用途
- 免费使用、分享或修改,甚至是商业用途
在我看到的文档中
- cc_publicdomain
- cc_attribute
- cc_sharealike
- cc_noncommercial
- cc_nonderived
https://developers.google.com/custom-search/json-api/v1/reference/cse/list
谁能告诉我我的请求应该是什么样的?
Official site of creative commons 包含每个 CC 许可类型的描述。
您可以使用 "cc_publicdomain"、"cc_attribute" 和 "cc_sharealike",例如“免费使用、共享或修改,甚至是商业用途”
和"cc_nonderived"就像“免费使用或共享,甚至是商业用途”。
要在请求中设置许可证,您可以使用 "rights" 参数并通过 url 编码逗号传递目标许可证类型。
就像在这个请求中一样:
GET https://www.googleapis.com/customsearch/v1?q=swollen+members+night+vision&cx=004646395488064118990%3Aachgbwsn6na&rights=cc_publicdomain%2Ccc_attribute&searchType=image&fields=items&key={YOUR_API_KEY}
也可以试试在线"any"google服务here and create usable to you requests here