How to download files from a shared folder Hi,I need to download all the files inhttps://app.box.com/s/rf6p81j3o507e8c5saywtlc1p91f8po9I cannot download it through the browser because the files are > 150 GB. Thus, I want to create a script that downloads the files one by one.To do so, I signed up for Box, and created a Custom App. On the 'purpose' drop-down menu, I selected 'other'. Next, I selected 'server authentication (with JWT)'. I then navigated to the configuration tab and added clicked 'Genereate a Public/Private Keypair', which downloaded a file named 0_XXXXXenv_config.json where the X's are random digits/characters. I renamed this file to config.json and then tried to run:
from boxsdk import JWTAuth, Clientauth = JWTAuth.from_settings_file('config.json')client = Client(auth)auth.authenticate_instance()shared_folder = client.get_shared_item("https://app.box.com/s/rf6p81j3o507e8c5saywtlc1p91f8po9")for item in shared_folder.get_items(limit=1000): client.file(file_id=item.id).download_to(item.name) break