Google 对图标服务的更改

Google's change of favicon service

很长一段时间以来,您可以从 public Google link 中获取每个站点的图标,其格式为

https://www.google.com/s2/favicons?domain=whosebug.com

可以用curl或wget下载。

不是 link 重定向到

https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://whosebug.com&size=16

而且好像不能再用命令下载了

当你尝试时

curl https://t0.gstatic.com/faviconV2?client=SOCIAL&url=https%3A%2F%2Fbrutalist.report&size=16 --output favicon.png

你得到输出

Warning: Binary output can mess up your terminal. Use "--output -" to tell Warning: curl to output it to your terminal anyway, or consider "--output Warning: " to save to a file.

没有任何反应,你必须手动停止执行。

有人知道如何解决吗?

It was possible to download it with curl or wget.

我运行遵循wget命令

wget -O Whosebug.png https://www.google.com/s2/favicons?domain=whosebug.com

我得到了一张名为 Whosebug.png 的 16 x 16 PNG 图片,根据我的理解,它应该是这样的。请尝试上面的代码并写下它的效果。