问题标签 [pydio]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
rest - 是否可以将 Pydio 的 v1 或 v2 API 与 Pydio Cells 一起使用?
我目前正在使用 Pydio 演示来测试 Pydio Cells API 的功能。https://demo.pydio.com/
在调用 Pydio Cells API 时,我可以使用 Bearer 令牌成功接收有效的 JSON 响应。
我尝试了下面的许多变体来尝试使用 v1 或 v2 API,但没有任何成功。
到目前为止,我无法弄清楚或找到任何说明 v1 或 v2 API 是否可以使用的文档。更不用说我在任何地方都可以找到。
自 2019 年 2 月 13 日起,一些指向 Pydio 文档的链接处于活动状态
API 版本 2:https ://pydio.com/en/pydio-api-v2 API 版本 1:https ://pydio.com/en/pydio-api-v1
我能找到的关于与 Pydio Cells 相关的 REST API 的唯一文档如下。
https://pydio.com/en/docs/cells/v1/using-rest-api
https://pydio.com/en/docs/developer-guide/protocol
https://pydio.com/en/docs/developer-guide/produce-jwt-using-postman
rest - 如何使用 Pydio Cells API 将文件/文件夹上传到 Pydio Cells
到目前为止,似乎有助于我实现最终通过 API 上传或查看文件和文件夹的最终目标的 API 调用如下:
发布https://demo.pydio.com/a/tree/admin/list
发布https://demo.pydio.com/a/workspace
获取https://demo.pydio.com/a/config/datasource
获取https://demo.pydio.com/a/config/virtualnodes/
Pydio Cells API 文档
go - Pydio 细胞插件
我需要扩展/自定义 Pydio Cells v2 部署,并且正在寻找有关如何为 Pydio Cells 编写和部署插件的信息。可悲的是,我找不到任何有关此的信息。我能找到的只是关于“旧”Pydio 的信息。有人可以给我一些提示吗?
docker - Pydio Cells docker + NGINX = /ws/chat 和 /ws/event 上的 404 错误
pydio/cells:2.1.1
我已经使用来自 dockerhub的图像设置了一个 Docker 容器。
我的docker-compose.yaml
包含以下部分:
为了将 Cells 暴露给网络,我使用了 NGINX 并具有以下配置:
几乎一切正常,但是我注意到当我创建一个新文件或文件夹时,我必须重新加载它才能出现在 UI 中。
查看 Firefox 的开发控制台,我在 GETwss://files.redacted.dev/ws/chat
和wss://files.redacted.dev/ws/event
请求上看到 404 错误。
我使用以下命令在主机上进行了测试(从而绕过了 NGINX):
并且命令没有终止(我假设这意味着它是成功的......)。
看起来NGINX配置是问题所在。有人知道如何解决这个问题吗?