mirror of
https://github.com/pikami/tiktok-dl.git
synced 2025-02-05 15:26:38 +00:00
12 lines
295 B
Go
12 lines
295 B
Go
package client
|
|
|
|
import (
|
|
models "../models"
|
|
)
|
|
|
|
// GetUserUploads - Get all uploads by user
|
|
func GetUserUploads(username string) []models.Upload {
|
|
actionOutput := executeClientAction(`https://www.tiktok.com/@`+username, "bootstrapIteratingVideos()")
|
|
return models.ParseUploads(actionOutput)
|
|
}
|