I have a developer account and a custom app. I am trying to test the updateInfo to update the filename and description but I get a 403. I have also tried reauthorizing the app.
Error description: The request requires higher privileges than provided by the access token
BoxAPIConnection api = new BoxAPIConnection(DEVELOPER_TOKEN);
BoxFile file = new BoxFile(api, document.getDocUID());
BoxFile.Info info = file.new Info();
info.setName(document.getName());
info.setDescription(document.getDescription());
file.updateInfo(info);
When I use the