tiktok-dl/client/getVideoDetails.go

12 lines
268 B
Go
Raw Normal View History

package client
import (
models "../models"
)
// GetVideoDetails - returns details of video
func GetVideoDetails(videoURL string) models.Upload {
2020-01-30 18:59:34 +02:00
actionOutput := executeClientAction(videoURL, "bootstrapGetCurrentVideo()")
return models.ParseUpload(actionOutput)
}