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
Bitbucket Server REST API endpoints provide the ability to check details on files and these files may contain some special characters.
For example the following endpoint can be used to retrieved the raw content of a file
/rest/api/1.0/projects/<project>/repos/<repository>/raw/<path/to/file>/filename.extension
It could be anything, but the ones we have seen the most are the following:
- % (e.g. as part of %20)
- #
Simply encode them when using the endpoint, for example by using the ASCII Encoding Reference page.
The encodings for the examples above are the following:
- %: %25
- #: %23
If the path to the file is "test%20special#character/HelloWorld.java", the REST API endpoint can be called in the following way:
/rest/api/1.0/projects/<project>/repos/<repository>/raw/test%2520special$23character/HelloWorld.java
Caterina Curti
Developer Advocate
Sydney
99 accepted answers
0 comments