我们已经制作了一个应用程序,用户可以上传个人资料照片。我们希望确保照片的用户本身,而不是名人或模因,所以我们发送邮件给版主每次一张照片被上传一个链接到https://lens.google.com/uploadbyurl?url=..。。这在桌面上很好,但是在移动平台上,不管有没有安装Google应用程序,这个链接都提供了404。
有没有人知道为什么,或者有一个链接,也可以在手机上工作?
发布于 2022-11-20 08:52:13
刚刚找到了一个仍然可以在手机上工作的解决方案(不是谷歌镜头,而是传统的谷歌图像搜索):
https://www.google.com/searchbyimage?sbisrc=4chanx&image_url=%IMG&safe=off
用图像URL替换%IMG。
发布于 2022-11-25 20:47:12
顺便说一句,正如你提到的Bing,这里是我的revers图像搜索链接的“集合”:
search_engines = {"GOOGLE": ["https://www.google.com/searchbyimage?sbisrc=4chanx&image_url=", "&safe=off"],
"GOOGLE LENS (from desktop only!)": ["https://lens.google.com/uploadbyurl?url=", ""],
"YANDEX": ["https://yandex.ru/images/touch/search?rpt=imageview&url=", ""],
"BING": ["https://www.bing.com/images/search?view=detailv2&iss=sbi&form=SBIVSP&sbisrc=UrlPaste&q=imgurl:", ""],
"TINEYE": ["https://www.tineye.com/search/?url=", ""],
"IQDB": ["https://iqdb.org/?url=", ""],
"SAUCEANO": ["https://saucenao.com/search.php?db=999&url=", ""],
"IMGOPS": ["https://imgops.com/", ""]
}
每个dict的值都是一对前缀/后缀:将图像的URL放在它们后面。
https://stackoverflow.com/questions/74136824
复制相似问题