package wechat
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func Test_GetAccessToken(t *testing.T) {
|
|
appid := "wxe2a6548a7ff2e558"
|
|
appsecret := "51aa4769025bd2c203b0e811b7063e1b"
|
|
ret, err := GetAccessToken(appid, appsecret)
|
|
t.Log(ret)
|
|
t.Log(err)
|
|
}
|