Files
baseapi/platformapi/alipayapi/utils_test.go
2020-01-08 18:05:08 +08:00

12 lines
203 B
Go

package alipayapi
import (
"testing"
)
func TestSystemAuthToken(t *testing.T) {
result, err := api.SystemAuthToken(GrantTypeCode, "c91ed60bebae473b9507a08e0c86NE98", "")
t.Log(err)
t.Log(result)
}