You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I've been able to successfully authenticate and use other areas of the 2.0 API and now I need to use the API do the equivalent of the "Download repository" link on the "Downloads" section in the UI. I just need a copy of the files, not a clone of the complete repository.
Using the 2.0 API I have the following:
https://api.bitbucket.org/2.0/repositories/{username}/{repository}/downloads
I can successfully use the call above but it returns the data below, implying there aren't any downloads.
{"pagelen": 10, "values": [], "page": 1, "size": 0}
What do I need to do to get a zip of all of the files in the repository? Thanks.
Hi Brian, welcome to the Community!
That string will return a list of download links associated with the repository, that means any other files you have uploaded to that section but not the source of the repo itself. As a picture is worth a thousand words:
- No downloads to show (although the link to download the repo is there)
- Downloads to be shown (I added a few files to the list)
To download the zip with a copy of the files from your repo, you can use the following:
https://bitbucket.org/<username>/<repo-name>/get/master.zip
Hope that helps!
Ana
Inside a zip file with source of branch we have additional top level. How i can get zip file with same stricture as repository? Or probably i can provide a start path as a parameter(--prefix in git archive)?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.