feat: update

This commit is contained in:
yanghao05
2025-04-30 14:41:46 +08:00
parent 070bec536b
commit be605ef603
6 changed files with 81 additions and 10 deletions

View File

@@ -84,3 +84,14 @@ func TestClient_AuthorizeUserInfo(t *testing.T) {
t.Logf("user: %+v", user)
})
}
func Test_GetJsTicket(t *testing.T) {
Convey("Test GetJsTicket", t, func() {
token := ""
ticket, err := getClient().GetJSTicket(token)
So(err, ShouldBeNil)
So(ticket, ShouldNotBeEmpty)
t.Log("Js Ticket:", ticket)
})
}