A golang wrapper api for pcloud REST API.
- Go 1.19
To include this module within your Go project run:
go get github.com/yanmhlv/pcloud@latest
To perform testing, you will to first set the environment variables
PCLOUD_USER
and PCLOUD_PASSWORD
to provide your username and
password to the test suite.
Note: It is recommended to not use your personal/professional pCloud account, use one specifically intended for testing or development.
The above environment variables can be set and the test suite can be run by executing the following:
export PCLOUD_USER=<your_pcloud_username>
export PCLOUD_PASSWORD=<you_pcloud_password>
go test ./...
username=myusername password=mypassword go test github.com/yanmhlv/pcloud
package main
import (
"fmt"
"os"
pcloud "github.com/yanmhlv/pcloud/client"
)
func main() {
c := pcloud.NewClient()
fmt.Println("Login", c.Login("myemail", "mypassword"))
fmt.Println("CreateFolder /helloworld", c.CreateFolder("/helloworld", 0, ""))
fmt.Println("CreateFolder /helloworld/1", c.CreateFolder("/helloworld/1", 0, ""))
fmt.Println("CreateFolder /helloworld/2", c.CreateFolder("/helloworld/2", 0, ""))
fmt.Println("DeleteFolder /helloworld/2", c.DeleteFolder("/helloworld/2", 0))
fmt.Println("RenameFolder /helloworld to /hello_world", c.RenameFolder(-1, "/helloworld", "/hello_world"))
fmt.Println("DeleteFolderRecursive /hello_world", c.DeleteFolderRecursive("/hello_world", 0))
fh, _ := os.Open("/Users/yan/Desktop/index.html")
fmt.Println("UploadFile index.html", c.UploadFile(fh, "", 0, "index.html", 0, "", 0))
fmt.Println("CopyFile /index.html to /index2.html", c.CopyFile(0, "/index.html", 0, "", "/index2.html"))
fmt.Println("DeleteFile /index2.html", c.DeleteFile(0, "/index2.html"))
fmt.Println("RenameFile /index.html to /index2.html", c.RenameFile(0, "/index.html", "/index2.html", 0, ""))
fmt.Println("DeleteFile /index2.html", c.DeleteFile(0, "/index2.html"))
fmt.Println("authkey:", *c.Auth)
fmt.Println("Logout", c.Logout())
}