为 golang 下载 mongoDB 驱动程序时禁止 403
403 forbidden when downloading mongoDB driver for golang
我正在尝试将 mongoDB golang 驱动程序下载到 VS 代码中的项目 运行 在 VS 代码终端中执行此命令:
go get go.mongodb.org/mongo-driver/mongo
但是我收到这样的 403 禁止错误:
go: downloading github.com/klauspost/compress v1.13.6
go.mongodb.org/mongo-driver/mongo imports
github.com/klauspost/compress/zstd: github.com/klauspost/compress@v1.13.6: reading https://proxy.golang.org/github.com/klauspost/compress/@v/v1.13.6.zip: 403 Forbidden
我想也许我的 IP 地址受到了限制,所以我尝试使用 psiphon 和 hotspot shield 等多种 VPN 下载它,但我仍然遇到同样的错误。
您可以通过以下方式暂时跳过使用 GOPROXY:
GORPOXY='direct' go get YOUR_URL
这样,它会跳过 goproxy 检查并直接从提供的目的地下载您的 repo。
我正在尝试将 mongoDB golang 驱动程序下载到 VS 代码中的项目 运行 在 VS 代码终端中执行此命令:
go get go.mongodb.org/mongo-driver/mongo
但是我收到这样的 403 禁止错误:
go: downloading github.com/klauspost/compress v1.13.6
go.mongodb.org/mongo-driver/mongo imports
github.com/klauspost/compress/zstd: github.com/klauspost/compress@v1.13.6: reading https://proxy.golang.org/github.com/klauspost/compress/@v/v1.13.6.zip: 403 Forbidden
我想也许我的 IP 地址受到了限制,所以我尝试使用 psiphon 和 hotspot shield 等多种 VPN 下载它,但我仍然遇到同样的错误。
您可以通过以下方式暂时跳过使用 GOPROXY:
GORPOXY='direct' go get YOUR_URL
这样,它会跳过 goproxy 检查并直接从提供的目的地下载您的 repo。