owncloud-sdk icon indicating copy to clipboard operation
owncloud-sdk copied to clipboard

:cloud: ownCloud client library for JavaScript

Results 55 owncloud-sdk issues
Sort by recently updated
recently updated
newest added

`yarn install` leads to `error @pact-foundation/[email protected]: The CPU architecture "arm64" is incompatible with this module.` with Mac arm64 processors.

technical debt

Currently, methods like `getFileContents` always goes to a path like `{{host}}/remote.php/webdav/...`, e.g. `https://localhost:9200/remote.php/webdav/12345`. Spaces require to query URLs like `https://localhost:9200/dav/spaces/12345`, hence we need to support arbitrary webdav URLs.

enhancement

There are two situations in which the settings service could not be available. At the moment, sdk is returning an empty array in both situations. 1: Settings service is not...

this test has `disableApp` and `enableApp` function in the one test. we don't need to re-enable the app as we don't run the test on a real server, so delete...

QA:team

Currently, we are exporting a whole sdk as one single export and then use it globally in the web app. This leads to a need of passing around the sdk...

enhancement

## Description When doing call `getShares('', { reshares: true, shared_with_me: true })` between the results are also mixed some files shared with others. Not all of them though. Tried if...

bug

https://github.com/noveens/js-owncloud-client/blob/4395837f02ee4700675fabbbb06dd9b1292e3c1a/owncloud/fileManagement.js#L78 **Observed behavior:** oc.files.getFileContents(file.name) returns a string that is much bigger than the image it should return. A 1.2MB (fs size) image returns as 2.2MB String. **Desired behavior:** It should...

## Description When listing files shared with others we need to access dav properties [e. g. permissions (getting only permissions from the share for the receiver), etag...]. I guess we...

enhancement

e.g. from `Apps.enableApp` maybe it would be better not to send any data? ``` POST /owncloud-core/ocs/v1.php/cloud/apps/files HTTP/1.1 Host: localhost Connection: keep-alive Content-Length: 19 authorization: Basic YWRtaW46YWRtaW4= User-Agent: Mozilla/5.0 (X11; Linux...

question