I'm trying to send multiple HTTP requests using the cycle-http driver. The first request in my example grabs a list of mailboxes and out of that response are multiple mailboxes I have to send HTTP requests for subsequent threads.
Get all mailbox IDs HTTP request -> Get all mail from each mailbox HTTP request.
I'm pretty stumped at this point, all the examples I have seen are simple single requests where the url is known prior to generating the observable. So not only am I confused about nesting HTTP requests, but I also am not sure how to "know" the URL for a filter
after the request has been made since the URLs are generated dynamically.
Any help would be greatly appreciated.