2015-10-15 08:10:03 +02:00
|
|
|
[![Build Status](https://travis-ci.org/logpacker/paypalsdk.svg?branch=master)](https://travis-ci.org/logpacker/paypalsdk)
|
|
|
|
|
2015-11-25 11:50:38 +01:00
|
|
|
#### GO client for PayPal REST API
|
2015-10-30 08:02:32 +01:00
|
|
|
|
2015-11-25 11:50:38 +01:00
|
|
|
#### Coverage
|
|
|
|
* POST /v1/oauth2/token
|
|
|
|
* POST /v1/payments/payment
|
2015-12-01 05:40:07 +01:00
|
|
|
* GET /v1/payments/payment/**ID**
|
2015-12-01 05:35:25 +01:00
|
|
|
* GET /v1/payments/payment
|
2015-12-01 05:40:07 +01:00
|
|
|
* GET /v1/payments/authorization/**ID**
|
|
|
|
* POST /v1/payments/authorization/**ID**/capture
|
|
|
|
* POST /v1/payments/authorization/**ID**/void
|
|
|
|
* POST /v1/payments/authorization/**ID**/reauthorize
|
2015-11-25 11:50:38 +01:00
|
|
|
|
|
|
|
#### Create client
|
2015-10-30 08:02:32 +01:00
|
|
|
|
2015-12-01 05:35:25 +01:00
|
|
|
```go
|
|
|
|
import "github.com/logpacker/paypalsdk"
|
|
|
|
```
|
|
|
|
|
2015-11-16 07:15:24 +01:00
|
|
|
```go
|
2015-10-30 08:02:32 +01:00
|
|
|
// Create a client instance
|
|
|
|
c, err := paypalsdk.NewClient("clietnid", "secret", paypalsdk.APIBaseSandBox)
|
2015-11-20 07:38:40 +01:00
|
|
|
c.SetLogFile("/tpm/paypal-debug.log") // Set log file if necessary
|
2015-10-30 08:02:32 +01:00
|
|
|
```
|
|
|
|
|
2015-11-25 11:50:38 +01:00
|
|
|
#### Get access token
|
2015-11-16 07:15:24 +01:00
|
|
|
```go
|
2015-10-30 08:02:32 +01:00
|
|
|
// When you will have authorization_code you can get an access_token
|
2015-11-20 07:38:40 +01:00
|
|
|
accessToken, err := c.GetAccessToken()
|
2015-11-16 06:11:27 +01:00
|
|
|
```
|
|
|
|
|
2015-11-25 11:50:38 +01:00
|
|
|
#### Create direct paypal payment
|
|
|
|
|
2015-11-16 07:15:24 +01:00
|
|
|
```go
|
2015-11-16 06:11:27 +01:00
|
|
|
// Now we can create a paypal payment
|
|
|
|
amount := Amount{
|
2015-11-25 11:55:33 +01:00
|
|
|
Total: "15.11",
|
2015-11-16 06:11:27 +01:00
|
|
|
Currency: "USD",
|
|
|
|
}
|
2015-11-25 11:50:38 +01:00
|
|
|
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)
|
2015-11-16 06:11:27 +01:00
|
|
|
|
2015-11-16 07:15:24 +01:00
|
|
|
// 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
|
|
|
|
```
|
2015-11-16 06:11:27 +01:00
|
|
|
|
2015-12-01 05:35:25 +01:00
|
|
|
### Create any payment
|
|
|
|
```go
|
|
|
|
p := paypalsdk.Payment{
|
|
|
|
Intent: "sale",
|
|
|
|
Payer: &paypalsdk.Payer{
|
|
|
|
PaymentMethod: "credit_card",
|
|
|
|
FundingInstruments: []paypalsdk.FundingInstrument{paypalsdk.FundingInstrument{
|
|
|
|
CreditCard: &paypalsdk.CreditCard{
|
|
|
|
Number: "4111111111111111",
|
|
|
|
Type: "visa",
|
|
|
|
ExpireMonth: "11",
|
|
|
|
ExpireYear: "2020",
|
|
|
|
CVV2: "777",
|
|
|
|
FirstName: "John",
|
|
|
|
LastName: "Doe",
|
|
|
|
},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
Transactions: []paypalsdk.Transaction{paypalsdk.Transaction{
|
|
|
|
Amount: &paypalsdk.Amount{
|
|
|
|
Currency: "USD",
|
|
|
|
Total: "200",
|
|
|
|
},
|
|
|
|
Description: "My Payment",
|
|
|
|
}},
|
|
|
|
RedirectURLs: &paypalsdk.RedirectURLs{
|
|
|
|
ReturnURL: "http://...",
|
|
|
|
CancelURL: "http://...",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
paymentResponse, err := client.CreatePayment(p)
|
|
|
|
```
|
|
|
|
|
2015-11-25 11:50:38 +01:00
|
|
|
#### Execute approved payment
|
|
|
|
|
2015-11-16 07:15:24 +01:00
|
|
|
```go
|
2015-11-16 06:11:27 +01:00
|
|
|
// 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)
|
2015-10-30 08:02:32 +01:00
|
|
|
```
|
2015-11-25 11:30:25 +01:00
|
|
|
|
2015-11-25 11:50:38 +01:00
|
|
|
#### Get payment by ID
|
|
|
|
|
2015-11-25 11:30:25 +01:00
|
|
|
```go
|
|
|
|
// Get created payment info
|
|
|
|
payment, err := c.GetPayment(paymentID)
|
|
|
|
```
|
|
|
|
|
2015-11-25 11:50:38 +01:00
|
|
|
#### Get list of payments
|
|
|
|
|
2015-11-25 11:30:25 +01:00
|
|
|
```go
|
|
|
|
// Get all payments slice
|
|
|
|
payments, err := c.GetPayments()
|
|
|
|
```
|
2015-12-01 05:35:25 +01:00
|
|
|
|
|
|
|
#### Get authorization by ID
|
|
|
|
|
|
|
|
```go
|
|
|
|
auth, err := c.GetAuthorization("AUTH-1")
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Capture authorization
|
|
|
|
|
|
|
|
```go
|
|
|
|
capture, err := c.CaptureAuthorization("AUTH-1", &paypalsdk.Amount{Total: "200", Currency: "USD"}, true)
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Void authorization
|
|
|
|
|
|
|
|
```go
|
|
|
|
auth, err := c.VoidAuthorization("AUTH-1")
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Reauthorize authorization
|
|
|
|
|
|
|
|
```go
|
|
|
|
auth, err := c.ReauthorizeAuthorization("AUTH-1", &paypalsdk.Amount{Total: "200", Currency: "USD"})
|
|
|
|
```
|