Kamil Berdychowski

Results 15 comments of Kamil Berdychowski

Hi @jimshowalter , Thanks for submitting this Issue! I've added this feature to our internal backlog. About the PII filter you would see that as a function that accepts String...

I do not think that toString method should return Json object representation with all the changes. This method is used mostly for debugging/logging so it should be fast . What...

Hi @jacquesvandermerwe , Thanks for submitting this Issue! I've added this feature to our internal backlog. @antusus

Hello @roshni06, we do not have API that allows you to download files from Box in batches. Maybe you can try and use [range requests](http://opensource.box.com/box-java-sdk/javadoc/com/box/sdk/BoxFile.html#downloadRange-java.io.OutputStream-long-long-) to create file parts and...

Hello @anh-ai, In your first example you are getting 401 (Unauthorised) response which suggests you haven't provided any authorisation token. The first two examples should be run in REPL as...

Hello @karanbir1395 , can you paste full trace log? I would like to know where is this ClassCastException originating from.

Thanks, I can improve the code to handle the wrong response from API but it looks like there is an error. You said you can debug the call. Could you...

You should be able to tell debugger to stop in any line. We are publishing source code so any modern IDE will deal with that. Even without source code, tools...

Hi @gurukashyap , You can create general task using API: https://github.com/box/box-java-sdk/blob/main/doc/tasks.md#add-a-task-to-a-file I can see that current documentation is a bit outdated. So here is a snippet: ```java boxFile.addTask(BoxTask.Action.COMPLETE, "General Task...

Hello @amitbatajoo, The API to manage FileRequests is available. API allows you to copy existing template to a folder. You will need to create template following instructions [here](https://developer.box.com/guides/file-requests/). You can...