如何将 Go 与 Bitbucket 私有存储库一起使用?

How do I use Go with Bitbucket private repositories?

我们正在使用私有 Bitbucket 存储库来管理我们的 Go 库。通过为 git 使用 insteadOf 配置,例如在这个 Whosebug answer 中,我们构建了 Go 版本 1.12。版本 1.13 和 1.14 不再工作。我们看到这样的错误:

$ go vet ./...
go: downloading bitbucket.org/travelloapp/golibs v1.0.42
usercache/usercache.go:6:2: bitbucket.org/travelloapp/golibs@v1.0.42: verifying module: bitbucket.org/travelloapp/golibs@v1.0.42: reading https://sum.golang.org/lookup/bitbucket.org/travelloapp/golibs@v1.0.42: 410 Gone
        server response:
        not found: bitbucket.org/travelloapp/golibs@v1.0.42: reading https://api.bitbucket.org/2.0/repositories/travelloapp/golibs?fields=scm: 403 Forbidden
                server response: Access denied. You must have write or admin access.

Go FAQ proposes 设置 curl~/.netrc 文件。我已经做到了,使用 Bitbucket 的“应用程序密码”功能。它不会改变结果。我添加了 bitbucket.orgapi.bitbucket.org 作为主机名。

我可以直接用curl测试文件设置是否正确:

$ curl -n https://api.bitbucket.org/2.0/repositories/travelloapp/golibs?fields=scm
{"scm": "git"}

郑重声明:尽管出现了 Bitbucket 错误消息。存储库读取访问权限似乎是唯一需要的权限,尽管我也尝试过启用所有权限。

我错过了什么吗?为什么适用于 Go 1.12 的方法不再适用于更高版本?

我目前正在使用:

$ go version
go version go1.14.2 linux/amd64
$ git version
git version 2.17.1
$ curl --version
curl 7.58.0 (x86_64-pc-linux-gnu) libcurl/7.58.0 OpenSSL/1.1.1 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Release-Date: 2018-01-24
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smb smbs smtp smtps telnet tftp 
Features: AsynchDNS IDN IPv6 Largefile GSS-API Kerberos SPNEGO NTLM NTLM_WB SSL libz TLS-SRP HTTP2 UnixSockets HTTPS-proxy PSL

我们在 Go 1.13 发布时首先遇到了这个问题,目前我们仍在将所有环境保留在 1.12 上。

由于 go@1.13 的行为与之前的版本类似,您需要为私有存储库设置 GOPRIVATE 环境变量