mirror of
https://github.com/plutov/paypal.git
synced 2025-01-23 02:11:02 +01:00
18 lines
301 B
Go
18 lines
301 B
Go
package paypal_test
|
|
|
|
import paypal "github.com/plutov/paypal"
|
|
|
|
func Example() {
|
|
// Initialize client
|
|
c, err := paypal.NewClient("clientID", "secretID", paypal.APIBaseSandBox)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Retrieve access token
|
|
_, err = c.GetAccessToken()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|