实名认证接口

This commit is contained in:
吕翠丽
2025-06-26 16:13:15 +08:00
parent 0237a95a43
commit 0c1bce5d8c
2 changed files with 104 additions and 0 deletions

View File

@@ -128,3 +128,16 @@ func (r *RedisCache) Get(ctx context.Context, number string) (*ExpressRes, error
return &info, nil
}
func TestAliCloudExpressClient_CallRealNameAuthAPI(t *testing.T) {
s := &AliCloudExpressClient{
AppCode: "",
Host: "",
}
got, err := s.CallRealNameAuthAPI(context.Background(), "", "")
if err != nil {
t.Errorf("CallRealNameAuthAPI() error = %v", err)
return
}
fmt.Println("=====", got)
}