nextcloud-java-api
nextcloud-java-api copied to clipboard
Java api library to access nextcloud features from java applications
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...
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...
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...
### 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;...
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 [](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...
- 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...