26 lines
424 B
Go
26 lines
424 B
Go
package www
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func TestClient_GetUserInfo(t *testing.T) {
|
|
|
|
c, err := NewClientWithAliAppcode("203874304", "9e5489a82dd641729186cdad166d81a3")
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
req := CreateGetPwdRequest()
|
|
req.UserName = "ttom666"
|
|
|
|
resp, err := c.GetUserInfo(req)
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
fmt.Println(resp.GetHttpContentString())
|
|
fmt.Println(resp.GetHttpHeaders())
|
|
}
|