I want to display bitbucket date on wallboard. I do this already for JIRA and Confluence by passing the os_password and os_username parameters in the URL for a dummy account which has readonly access, but I've discovered this doesn't work for Bitbucket as I don't believe it uses the Seraph authentication library stack.
Any ideas?
The free Token Authenticator app for Bitbucket Server is very handy for this sort of thing, since it allows you to auth without using any passwords.
Just be sure to set BOTH headers (X-Auth-User and X-Auth-Token) in your HTTP request once the app is in place and configured:
curl -s -H "X-Auth-User:$USERNAME" -H "X-Auth-Token:$TOKEN"
(I usually forget to set both and just set X-Auth-Token and then I get really confused.)
Note: If you're on Bitbucket Cloud, then things are probably different.
If the information you are looking for is available via the Bitbucket REST API, then you should be able to use BASIC authentication to login that. It is almost as easy as your method, but passes the username / password data via an HTTP header, not via the URL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately I want to show contribution information exposed by the awesome graph plugin on a large wallboard to encourage our inner source initiatives, so it really needs to be the Bitbucket WebUI I show.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.