微信相关接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
232 B

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)
}