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 have a json file stored in BitBucket. My goal is to view the json file as a raw using Postman or invoking an HTTPS request.
https://bitbucket.org/<repo>/<project>/raw/master/config_test.json?response=json
The URL above works fine when I view it from the browser, but now when I call it from postman. I even tried the api.bitbucket.org/2.0/repositories but still not working.
I'm getting this error
Requesting in your browser works because it is likely using your session cookie to authenticate.
For API authentication, here are some ideas of what to check.
1. Definitely use api.bitbucket.org/2.0/...
2. The app password needs your username still, it is not a bearer token. e.g. you need to use curl -u my-username:my-app-password https://api.bitbucket.org/2.0/repositories/...
This is the API you'll want to use to get a file: https://developer.atlassian.com/cloud/bitbucket/rest/api-group-source/#api-repositories-workspace-repo-slug-src-commit-path-get as the first "raw" URL you posted isn't an API resource.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.