Track bundled vendor runtime sources
Some checks failed
CI / main (push) Has been cancelled
CI / release-e2e (push) Has been cancelled

This commit is contained in:
2026-07-07 10:05:50 +08:00
parent fbe179ab53
commit 52636c91ae
2111 changed files with 1850012 additions and 14 deletions

View File

@@ -0,0 +1,28 @@
# PowerShell examples for the installed sau CLI.
# account_name is user-defined. One account_name maps to one account file.
# You can prepare multiple account names and run them in parallel.
$account = "account_a"
$video = "videos/demo.mp4"
$thumbnail = "videos/demo.png"
$noteImages = @("videos/1.png", "videos/2.png", "videos/3.png")
sau kuaishou login --account $account
sau kuaishou check --account $account
sau kuaishou upload-video `
--account $account `
--file $video `
--title "Kuaishou video from PowerShell" `
--desc "Kuaishou video description from PowerShell" `
--tags "cli,video" `
--thumbnail $thumbnail `
--headless
sau kuaishou upload-note `
--account $account `
--images $noteImages `
--title "Kuaishou note title from PowerShell" `
--note "Kuaishou note from PowerShell" `
--tags "cli,note" `
--headless