This plugin allows RSS feeds to display content of an Elgg user by HTTP authentication.
The rss feeds may be in the following formats., (*1)
<url>?view=rss
, (*2)
<url>?view=rss&username=<username>&password=<password>
, (*3)
Please note that this method is the most insecure as the
username and password are visible in plain text in the url, (*4)
By visiting the tools configuration page a user can generate a unique token that can be
appended to the url., (*5)
eg., (*6)
<url>blog/all?view=rss
, (*7)
Would become something like, (*8)
<url>blog/all?view=rss&rssguid=38&rsstoken=48e198a2264328528a70d65abcedbe146f039c94
, (*9)
<url>?view=rssauth
, (*10)
Having view=rssauth in the url will return the headers requesting authentication
Your rss feed can then supply the username and password., (*11)
Please note that this is also insecure as the credentials are passed in plain text
but are not explicitly visible (as in the url example). This should be fine if used
in conjunction with SSL., (*12)
ADDITIONALLY
if you can find a way to send the HTTP credentials without requiring the authentication headers
first, you can just use the the default ?view=rss and still receive an authenticated feed, (*13)