diff --git a/kuaishou/kuaishou.go b/kuaishou/kuaishou.go index 0a7ff36..309bfa9 100644 --- a/kuaishou/kuaishou.go +++ b/kuaishou/kuaishou.go @@ -99,3 +99,8 @@ func GetKuishouCpsOrder(signSecret string, param map[string]string) (string, err func GetKuishouSelectionPick(signSecret string, param map[string]string) (string, error) { return SendPost("open.distribution.selection.pick", signSecret, param) } + +//https://open.kwaixiaodian.com/zone/docs/api?name=open.user.info.get&version=1 用户信息 +func GetKuishouUser(signSecret string, param map[string]string) (string, error) { + return SendGet("open.user.info.get", signSecret, param) +}