I have been trying to get the JWT authentication working on my app, following this: https://github.com/box/box-python-sdk#box-developer-edition.
I get an acccess_token successfully, after the call
access_token = auth.authenticate_instance()but all subsequent requests return a 500 (internal_server_error). Here are two latest examples:
b'{"type":"error","status":500,"code":"internal_server_error","help_url":"http:\\/\\/developers.box.com\\/docs\\/#errors","message":"Internal Server Error","request_id":"***number removed for privacy***958bdce7e8c11b"}'
b'{"type":"error","status":500,"code":"internal_server_error","help_url":"http:\\/\\/developers.box.com\\/docs\\/#errors","message":"Internal Server Error","request_id":"***number removed for privacy***58bdce800b026"}'Any idea where I could have gone wrong? Thank you!