nextcloud-java-api icon indicating copy to clipboard operation
nextcloud-java-api copied to clipboard

Java api library to access nextcloud features from java applications

Results 12 nextcloud-java-api issues
Sort by recently updated
recently updated
newest added

Hi! How can i set expiry date for a shared folder?

enhancement
help wanted

The "Usage" sections says: ```xml com.github.a-schild nextcloud-java-api ``` While infact it should state (as per pom.xml): ```xml org.aarboard.nextcloud nextcloud-api ```

No problem using `org.aarboard.nextcloud.api.NextcloudConnector.downloadFile(String, String)` to directly save a file. But if I use `org.aarboard.nextcloud.api.NextcloudConnector.downloadFile(String)` : ``` try (InputStream in = nextcloud.downloadFile(path + "/" + fileName)) { int bytesRead; byte[]...

I am trying to download a file from Nextcloud (self-hosted, version is 20.0.8.1). The top level view in Nextcloud has a file "Nextcloud.mp4". I have verified that the username and...

bug

Could we have access to users calendars. Based on https://help.nextcloud.com/t/download-ics-file-by-script/15086/3, I believe the calendars path is '/remote.php/dav/calendars' but the WEB_DAV_BASE_PATH = "remote.php/webdav/" BTW. **Great product**, I'm using nextcloud-java-api to integrate...

enhancement
help wanted

org.aarboard.nextcloud nextcloud-api 11.5.1 IntelliJ Ultimate IntelliJ IDEA 2021.2.1 (Ultimate Edition) Build #IU-212.5080.55, built on August 24, 2021 Java 11 Official and latest NextCloud Docker image without any further configurations Given...

Is there any call to download the partial file from the server ? For ex I have 1GB file and connection got lost on 800MB is there any provision to...

enhancement
help wanted

### upload 0 Kb. Flow is my test code. wanna to help me. ```Java package org.bklab.wot.warmonger; import org.aarboard.nextcloud.api.NextcloudConnector; import java.io.*; import java.net.URLEncoder; import java.nio.charset.StandardCharsets; import java.util.Arrays; import java.util.List; import java.util.concurrent.atomic.AtomicInteger;...

wontfix

Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.13.2.2 to 2.13.4.1. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=maven&previous-version=2.13.2.2&new-version=2.13.4.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

- Typo fixes - Javadoc url's - Modifiers should be declared in the correct order - Try-with resources - Use constants where possible - Removed redundant Exception throwing - Simplified...