使用 REST 从 bitbucket 下载 Api Bitbucket
Downloading from bitbucket using REST Api Bitbucket
最近我发现我可以使用 Rest Api Bitbucket 下载存储库。
我阅读了文档,但到目前为止我还没有设法下载任何文件,但是使用 curl
.
的一些 HTTP headers
谁能给我一个关于如何使用 API 的具体例子?
我知道命令是 curl https://api.bitbucket.org/2.0/repositories/
,但我的 bitbucket 链接是这样的
http://company repository site
/projects/project
/repos/repo
/
更新 1
**
我设法使用语法使用 curl 下载文件:curl -u user:pass http://company_repository_site/projects/my_project/repos/my_repo/my_file.ext?raw
但我仍然想知道如何使用 REST Api
**
谢谢,丹尼尔。
最后,我用了
curl -u user:pass `bitbucketCompanyServer`/rest/api/1.0/projects/`project`/repos/`repository`/browse/`fullPathToFileOnBitbucket`?at=`commit` > output
希望对您有所帮助
最近我发现我可以使用 Rest Api Bitbucket 下载存储库。
我阅读了文档,但到目前为止我还没有设法下载任何文件,但是使用 curl
.
谁能给我一个关于如何使用 API 的具体例子?
我知道命令是 curl https://api.bitbucket.org/2.0/repositories/
,但我的 bitbucket 链接是这样的
http://
company repository site
/projects/project
/repos/repo
/
更新 1
**
我设法使用语法使用 curl 下载文件:curl -u user:pass http://company_repository_site/projects/my_project/repos/my_repo/my_file.ext?raw
但我仍然想知道如何使用 REST Api
**
谢谢,丹尼尔。
最后,我用了
curl -u user:pass `bitbucketCompanyServer`/rest/api/1.0/projects/`project`/repos/`repository`/browse/`fullPathToFileOnBitbucket`?at=`commit` > output
希望对您有所帮助