The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Bamboo RSS Basic Auth

Todd Morrison
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Christopher Jones
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
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
TAGS
AUG Leaders

Atlassian Community Events