使用带有访问密钥的curl读取Bitbucket资源

时间:2017-09-15 09:13:44

标签: rest curl bitbucket

我将Bitbucket repo配置为只读,可通过REST API公开访问。我需要使用GET HTTP方法读取内容的一些JSON配置文件。

https://<bitbucket-repo-url>/config.json?raw

我想使用访问密钥切换到安全方法。

enter image description here

我想尝试使用curl测试它,但我不知道包含访问键的参数。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

访问密钥仅适用于SSH。它们不适用于任何基于HTTP的实用程序(如curl)或端点(如您在示例中列出的那样)。

这是Bitbucket Server(内部部署版本)吗?如果是这样,https://confluence.atlassian.com/bitbucketserver/permanently-authenticating-with-git-repositories-776639846.html?_ga=2.188793826.854670382.1505151098-758028192.1431549295可能会对您有所帮助。