我正在尝试使用 来自 github 的 pcloud API
有人可以告诉我如何使用此 api 从手机上传本地文件吗?
我发现我应该使用:
ApiClient apiClient =...;
File localFile = ...;
RemoteFile uploadedFile = apiClient.createFile(
RemoteFolder.ROOT_FOLDER_ID,
localFile.getName(),
DataSource.create(localFile),
new Date(localFile.lastModified())
.execute();
我已经设法添加 apikey 并使用 oauth 登录。但我不知道如何为这段代码添加存储路径。
ApiClient apiClient =...; 文件本地文件 = ...;
对不起,我的英语不是我的主要语言。如果有人可以帮助我,我将不胜感激。我是编码的初学者,还在学习