Hello!
I'm new to Box API and have struggled to find clear answers about how to resolve this particular problem. I have been working with JWTAuth to authenticate a service account that I have previously added as a collaborator in the folders/directories that it needs access to. However, I'm being met with an "access_denied_insufficient_permissions" exception.
Any help would be greatly appreciated! Thank you!
Here's the code that I've been using (utilizing Box's Python SDK):
from boxsdk import JWTAuth, Client
config = JWTAuth.from_settings_file('data/auth_config.json')
client = Client(config)
items = client.folder(folder_id='[MY FOLDER ID]').get_items()
for item in items:
... (and so on)