Bamboo RSS Basic Auth

Todd Morrison March 26, 2015

Can someone detail how to access bamboo build RSS feeds from an external location for an auth protected instance?

 

We would like to consume the feed for custom notification and are not comfortable making builds public.

1 answer

0 votes
Christopher Jones April 20, 2015

I struggled with urllib and redirect to authentication page.  With Python 3, urllib3, and feedparser i got something to work.

 

import feedparser
import urllib3


# colon separated creds - replace USERNAME and PASSWORD with Bamboo account info
headers = urllib3.make_headers('USERNAME:PASSWORD')
 
# replace bamboo with your bamboo server name or ipaddress and BUILDKEY with the build key of the project/build plan you want to get updates for.
d = feedparser.parse('https://bamboo/rss/createAllBuildsRssFeed.action?feedType=rssAll&buildKey=BUILDKEY', request_headers=headers)


print(d.status)
print(d.headers)
print(d['entries'][0]['links'][0]['href'])


# print(d) # print the whole feed

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events