mirror of
https://github.com/plutov/paypal.git
synced 2025-01-23 10:21:03 +01:00
11 lines
157 B
Go
11 lines
157 B
Go
package paypalsdk
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestGetAccessToken(t *testing.T) {
|
|
c, _ := NewClient("clid", "secret", APIBaseSandBox)
|
|
c.GetAccessToken()
|
|
}
|