2015-10-14 07:30:28 +02:00
|
|
|
package paypalsdk
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2015-10-15 07:43:50 +02:00
|
|
|
"fmt"
|
2015-10-14 07:30:28 +02:00
|
|
|
)
|
|
|
|
|
2015-10-15 10:47:36 +02:00
|
|
|
|
2015-10-14 07:30:28 +02:00
|
|
|
const (
|
|
|
|
// APIBaseSandBox points to the sandbox (for testing) version of the API
|
2015-10-15 10:47:36 +02:00
|
|
|
APIBaseSandBox = "https://api.sandbox.paypal.com"
|
2015-10-14 07:30:28 +02:00
|
|
|
|
|
|
|
// APIBaseLive points to the live version of the API
|
2015-10-15 10:47:36 +02:00
|
|
|
APIBaseLive = "https://api.paypal.com"
|
2015-10-14 07:30:28 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
// Client represents a Paypal REST API Client
|
|
|
|
Client struct {
|
|
|
|
client *http.Client
|
|
|
|
ClientID string
|
|
|
|
Secret string
|
|
|
|
APIBase string
|
|
|
|
Token *TokenResponse
|
|
|
|
}
|
|
|
|
|
|
|
|
// TokenResponse maps to the API response for the /oauth2/token endpoint
|
|
|
|
TokenResponse struct {
|
2015-10-16 12:00:57 +02:00
|
|
|
Scope string `json:"scope"`
|
|
|
|
Token string `json:"access_token"`
|
|
|
|
Type string `json:"token_type"`
|
|
|
|
AppID string `json:"app_id"`
|
|
|
|
ExpiresIn int `json:"expires_in"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// RefreshTokenResponse maps to the API response for the /v1/identity/openidconnect/tokenservice
|
|
|
|
RefreshTokenResponse struct {
|
|
|
|
Type string `json:"token_type"`
|
|
|
|
RefreshToken string `json:"refresh_token"`
|
|
|
|
AccessToken string `json:"access_token"`
|
|
|
|
ExpiresIn int `json:"expires_in"`
|
2015-10-14 07:30:28 +02:00
|
|
|
}
|
2015-10-15 07:43:50 +02:00
|
|
|
|
|
|
|
// ErrorResponse is used when a response has errors
|
|
|
|
ErrorResponse struct {
|
|
|
|
Response *http.Response `json:"-"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
DebugID string `json:"debug_id"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
InformationLink string `json:"information_link"`
|
|
|
|
Details []ErrorDetail `json:"details"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrorDetails map to error_details object
|
|
|
|
ErrorDetail struct {
|
|
|
|
Field string `json:"field"`
|
|
|
|
Issue string `json:"issue"`
|
|
|
|
}
|
2015-10-14 07:30:28 +02:00
|
|
|
)
|
2015-10-15 07:43:50 +02:00
|
|
|
|
|
|
|
// Error method implementation for ErrorResponse struct
|
|
|
|
func (r *ErrorResponse) Error() string {
|
|
|
|
return fmt.Sprintf("%v %v: %d %v\nDetails: %v", r.Response.Request.Method, r.Response.Request.URL, r.Response.StatusCode, r.Message, r.Details)
|
|
|
|
}
|