Skip to main content

Box API SDK is not returning the files consistently

  • September 27, 2023
  • 0 replies
  • 204 views

Hi, We have observed that the Box API is not returning the files consistently in multiple runs, however, this issue is occurring rarely.

Sometimes it fetches less files than what is present in the Box without making any changes anywhere.


We are using the following Box SDK.


<dependency>

  <groupId>com.box</groupId>

  <artifactId>box-java-sdk</artifactId>

  <version>2.58.0</version>

</dependency>


Sample code:


BoxFolder folders = new BoxFolder(api, userRootFolderId);

    folders.forEach(item-> {      

      if (itemInfo instanceof BoxFile.Info) {

        BoxFile.Info fileInfo = (BoxFile.Info) itemInfo;

        log.info("Fetched BoxFile {} with id {}.", fileInfo.getName(), fileInfo.getID());       

      } else if (itemInfo instanceof BoxWebLink.Info) {        

      if (boxConfiguration.getCrawlWebLinks()) {           

        log.info("Fetched Weblink {} with id {}.", item.getName(), item.getID());         

      } else if (itemInfo instanceof BoxFolder.Info) {         

        log.info("Fetched folder {} with id {}.", itemInfo.getName(), itemInfo.getID());       

      }

    });


Can you please help here?

0 replies

Be the first to reply!

Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings