Golang client for PayPal REST API
Go to file
Aliaksandr Pliutau 04214cbc33 string
2015-11-25 17:55:33 +07:00
examples GetPayment, GetPayments 2015-11-25 17:30:25 +07:00
.travis.yml client_test.go 2015-10-15 12:52:16 +07:00
auth_test.go access_token changes 2015-11-20 13:38:40 +07:00
auth.go content-type 2015-11-20 14:40:47 +07:00
client_test.go little fixes after understanding 2015-10-30 14:02:32 +07:00
client.go log req+resp 2015-11-20 10:17:42 +07:00
LICENSE.md MIT 2015-10-14 12:03:03 +07:00
payment_test.go GetPayment, GetPayments 2015-11-25 17:30:25 +07:00
payment.go GetPayment, GetPayments 2015-11-25 17:30:25 +07:00
README.md string 2015-11-25 17:55:33 +07:00
types.go GetPayment, GetPayments 2015-11-25 17:30:25 +07:00

Build Status

GO client for PayPal REST API

Coverage

  • POST /v1/oauth2/token
  • POST /v1/payments/payment
  • GET /v1/payments/payment/%ID%
  • GET /v1/payments/payment

Create client

// Create a client instance
c, err := paypalsdk.NewClient("clietnid", "secret", paypalsdk.APIBaseSandBox)
c.SetLogFile("/tpm/paypal-debug.log") // Set log file if necessary

Get access token

// When you will have authorization_code you can get an access_token
accessToken, err := c.GetAccessToken()

Create direct paypal payment

// Now we can create a paypal payment
amount := Amount{
    Total:    "15.11",
    Currency: "USD",
}
redirectURI := "http://example.com/redirect-uri"
cancelURI := "http://example.com/cancel-uri"
description := "Description for this payment"
paymentResult, err := c.CreateDirectPaypalPayment(amount, redirectURI, cancelURI, description)

// If paymentResult.ID is not empty and paymentResult.Links is also
// we can redirect user to approval page (paymentResult.Links[0]).
// After approval user will be redirected to return_url from Request with PaymentID

Execute approved payment

// And the last step is to execute approved payment
// paymentID is returned via return_url
paymentID := "PAY-17S8410768582940NKEE66EQ"
// payerID is returned via return_url
payerID := "7E7MGXCWTTKK2"
executeResult, err := c.ExecuteApprovedPayment(paymentID, payerID)

Get payment by ID

// Get created payment info
payment, err := c.GetPayment(paymentID)

Get list of payments

// Get all payments slice
payments, err := c.GetPayments()