This repository has been archived on 2024-01-17. You can view files and clone it, but cannot push or open issues or pull requests.
dlbot4/tiktok/tikmate.go
Cat /dev/Nulo 892af35ea3
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
usar cobalt para tiktok + subir imagenes con audio
2023-12-28 23:11:52 -03:00

47 lines
1.1 KiB
Go

package tiktok
import (
"encoding/json"
"errors"
"io"
"net/url"
)
// alternativa: https://github.com/Evil0ctal/Douyin_TikTok_Download_API
type lookupResponse struct {
AuthorAvatar string `json:"author_avatar"`
AuthorID string `json:"author_id"`
AuthorName string `json:"author_name"`
CommentCount int `json:"comment_count"`
CreateTime string `json:"create_time"`
ID string `json:"id"`
LikeCount int `json:"like_count"`
ShareCount int `json:"share_count"`
Success bool `json:"success"`
Message string `json:"message"`
Token string `json:"token"`
}
func (r *TikTok) lookup(urlS string) (string, error) {
resp, err := r.Client.PostForm(
"https://api.tikmate.app/api/lookup",
url.Values{"url": {urlS}},
)
if err != nil {
return "", err
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
var lookup lookupResponse
err = json.Unmarshal(body, &lookup)
if err != nil {
return "", err
}
if !lookup.Success {
return "", errors.New(lookup.Message)
}
return "https://tikmate.app/download/" + lookup.Token + "/" + lookup.ID + ".mp4", nil
}