Skip to main content

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?

Be the first to reply!

Reply