我想在特定许可下使用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
有人能告诉我我的要求应该是什么样的吗?
Creative Commons的官方网站包含每种CC许可证类型的说明.
您可以使用"cc_publicdomain","cc_attribute"和"cc_sharealike",例如" 免费使用,共享或修改,甚至商业化 "
和"cc_nonderived",如" 免费使用或共享,甚至商业化 ".
要在请求中设置许可证,您可以使用"rights"参数并通过url encoded comma传递目标许可证类型.
喜欢这个请求:
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}
您也可以尝试网上"任何"谷歌服务在这里,并创建可用于您的要求在这里