I want to be able to have an rss feed with an querysting. For example example.com/rss/bbox?=39.715056,-75.811158,39.5098,-75.491781
- I couldn’t find any example of rss with querystrings, is this proper?
- How do I get the arguments using django’s feed class?
Found it! the
get_objectmethod is passedrequestwhich you then can extract the GET arguments.The returned object can then be used in
itemsand most the rest of the feed class’s methods