29 lines
459 B
Go
29 lines
459 B
Go
package pay
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func TestClient_GetUserInfo(t *testing.T) {
|
|
|
|
c, err := NewClient()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
req := CreateComplaintNotifyUrlRequest()
|
|
|
|
req.MchId = "3503"
|
|
req.NotifyUrl = "https://pay.uu89.com/api/complaint/wxNotify/3503"
|
|
req.Type = 1
|
|
|
|
resp, err := c.ComplaintNotifyUrl(req)
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
fmt.Println(resp.GetHttpContentString())
|
|
fmt.Println(resp.GetHttpHeaders())
|
|
}
|