I have a Web app created in React. Most of the URLs require authentication (Bearer). One of the API endpoints is to download a ZIP file. I'm not sure how to trigger the file to download on the clients browser. I can't do an <a> because it needs the Bearer token. The React app can download it but then how do I trigger the browser to accept the download? Thx.