From 2d81c79e7a038628cb15cf563b31ffe0d7fafe53 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Tue, 13 Jun 2023 17:19:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tik_tok/svc_tik_tok_open_api.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tik_tok/svc_tik_tok_open_api.go b/tik_tok/svc_tik_tok_open_api.go index 45b4e9c..1b190b7 100644 --- a/tik_tok/svc_tik_tok_open_api.go +++ b/tik_tok/svc_tik_tok_open_api.go @@ -200,3 +200,12 @@ func GetClientToken(args map[string]string) map[string]string { } return data } + +func OpenJsbTicket(args map[string]interface{}) (string, error) { + url := "js/getticket" + fmt.Println(args) + send, err := OpenSendApiGet(url, zhios_third_party_utils.AnyToString(args["acctoken"])) + fmt.Println(send) + fmt.Println(err) + return send, err +}