Track bundled vendor runtime sources
This commit is contained in:
28
vendor/social-auto-upload/skills/kuaishou-upload/scripts/examples/kuaishou_commands.ps1
vendored
Normal file
28
vendor/social-auto-upload/skills/kuaishou-upload/scripts/examples/kuaishou_commands.ps1
vendored
Normal 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
|
||||
Reference in New Issue
Block a user