We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
初步定位了一下原因是gofile的 createFolder api发生了变化。
createFolder
现在需要三个参数 parentFolderId folderName token。
parentFolderId
folderName
token
代码里的只有 createFolderPostString = "parentFolderId=%s&token=%s",缺少一个 folderName 参数。
createFolderPostString = "parentFolderId=%s&token=%s"
正在尝试修复
The text was updated successfully, but these errors were encountered:
修复了GoFile的上传功能,下载功能暂未测试。
主要修改了 createFolder setFolderOption 这两个api的调用及上传完毕结果的展示。
setFolderOption
更新了一些Readme里的信息。 #85
Sorry, something went wrong.
不是很熟练go语言,如果有问题还请见谅
No branches or pull requests
初步定位了一下原因是gofile的
createFolder
api发生了变化。现在需要三个参数
parentFolderId
folderName
token
。代码里的只有
createFolderPostString = "parentFolderId=%s&token=%s"
,缺少一个folderName
参数。正在尝试修复
The text was updated successfully, but these errors were encountered: