MaxMind 拉取 Geolite2 得到 401 Unauthorized

MaxMind pulling Geolite2 gets 401 Unauthorized

Geolite2 访问权限于 12 月 30 日更改。

今天我注册了一个 Maxmind 帐户,注册了一个许可证密钥(一个 "Will this key be used for GeoIP Update?" 和一个不会).. 现在每次我输入我都会得到一个 401:

smachine:~# wget "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-ASN-CSV&token=n3fU000000000000&suffix=zip"
--2020-01-13 00:37:23--  https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-ASN-CSV&token=n3fU000000000000&suffix=zip
Resolving download.maxmind.com (download.maxmind.com)... 104.16.37.47, 104.16.38.47, 2606:4700::6810:252f, ...
Connecting to download.maxmind.com (download.maxmind.com)|104.16.37.47|:443... connected.
HTTP request sent, awaiting response... 401 Unauthorized

Username/Password Authentication Failed.
smachine:~#

知道我做错了什么吗?

想通了...我没有注意到 https://dev.maxmind.com/geoip/geoipupdate/#Direct_Downloads 上的说明,它说您需要将 token= 更改为 license_key= ...一旦我这样做了,它就起作用了预期。

如果您在 shell 脚本中使用 wget 或 curl,请务必引用 URL。

顺便说一下,如果您不是 root 用户,请在命令前使用 sudo。