paypale/README.md

242 lines
6.2 KiB
Markdown
Raw Normal View History

2016-01-05 07:08:02 +01:00
[![Build Status](https://travis-ci.org/logpacker/PayPal-Go-SDK.svg?branch=master)](https://travis-ci.org/logpacker/PayPal-Go-SDK)
[![Godoc](http://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/logpacker/PayPal-Go-SDK)
2016-01-20 07:37:00 +01:00
[![Chat at https://gitter.im/logpacker/PayPal-Go-SDK](https://img.shields.io/badge/gitter-dev_chat-46bc99.svg)](https://gitter.im/logpacker/PayPal-Go-SDK?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2015-10-15 08:10:03 +02:00
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**
* 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-12-17 04:56:49 +01:00
* GET /v1/payments/sale/**ID**
* POST /v1/payments/sale/**ID**/refund
2015-12-17 05:28:26 +01:00
* GET /v1/payments/refund/**ID**
2015-12-17 08:50:25 +01:00
* GET /v1/payments/orders/**ID**
* POST /v1/payments/orders/**ID**/authorize
* POST /v1/payments/orders/**ID**/capture
* POST /v1/payments/orders/**ID**/do-void
* POST /v1/identity/openidconnect/tokenservice
* GET /v1/identity/openidconnect/userinfo/?schema=**SCHEMA**
2016-02-17 05:10:49 +01:00
* POST /v1/payments/payouts?sync_mode=true
2015-11-25 11:50:38 +01:00
2015-12-17 08:58:31 +01:00
#### Missing endpoints
It is possible that some endpoints are missing in this SDK Client, but you can use built-in **paypalsdk** functions to perform a request: **NewClient -> NewRequest -> SendWithAuth**
#### Create Client
2015-10-30 08:02:32 +01:00
```go
2016-01-05 07:08:02 +01:00
import "github.com/logpacker/PayPal-Go-SDK"
```
2015-11-16 07:15:24 +01:00
```go
2015-10-30 08:02:32 +01:00
// Create a client instance
2015-12-17 08:50:25 +01:00
c, err := paypalsdk.NewClient("clientID", "secretID", 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
2015-12-22 07:01:59 +01:00
amount := paypalsdk.Amount{
Total: "7.00",
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
### 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",
2015-12-22 07:01:59 +01:00
Total: "7.00",
},
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()
```
#### Get authorization by ID
```go
2015-12-17 08:58:31 +01:00
authID := "2DC87612EK520411B"
auth, err := c.GetAuthorization(authID)
```
#### Capture authorization
```go
2015-12-22 07:01:59 +01:00
capture, err := c.CaptureAuthorization(authID, &paypalsdk.Amount{Total: "7.00", Currency: "USD"}, true)
```
#### Void authorization
```go
2015-12-17 08:58:31 +01:00
auth, err := c.VoidAuthorization(authID)
```
#### Reauthorize authorization
```go
2015-12-22 07:01:59 +01:00
auth, err := c.ReauthorizeAuthorization(authID, &paypalsdk.Amount{Total: "7.00", Currency: "USD"})
```
2015-12-17 04:56:49 +01:00
#### Get Sale by ID
```go
2015-12-17 08:58:31 +01:00
saleID := "36C38912MN9658832"
sale, err := c.GetSale(saleID)
2015-12-17 04:56:49 +01:00
```
#### Refund Sale by ID
```go
// Full
2015-12-17 08:58:31 +01:00
refund, err := c.RefundSale(saleID, nil)
2015-12-17 04:56:49 +01:00
// Partial
2015-12-22 07:01:59 +01:00
refund, err := c.RefundSale(saleID, &paypalsdk.Amount{Total: "7.00", Currency: "USD"})
2015-12-17 04:56:49 +01:00
```
2015-12-17 05:28:26 +01:00
#### Get Refund by ID
```go
2015-12-17 08:58:31 +01:00
orderID := "O-4J082351X3132253H"
refund, err := c.GetRefund(orderID)
2015-12-17 08:50:25 +01:00
```
#### Get Order by ID
```go
2015-12-17 08:58:31 +01:00
order, err := c.GetOrder(orderID)
2015-12-17 08:50:25 +01:00
```
#### Authorize Order
```go
2015-12-22 07:01:59 +01:00
auth, err := c.AuthorizeOrder(orderID, &paypalsdk.Amount{Total: "7.00", Currency: "USD"})
2015-12-17 08:50:25 +01:00
```
#### Capture Order
```go
2015-12-22 07:01:59 +01:00
capture, err := c.CaptureOrder(orderID, &paypalsdk.Amount{Total: "7.00", Currency: "USD"}, true, nil)
2015-12-17 08:50:25 +01:00
```
#### Void Order
```go
2015-12-17 08:58:31 +01:00
order, err := c.VoidOrder(orderID)
2015-12-17 05:28:26 +01:00
```
2015-12-29 10:30:23 +01:00
2016-01-18 09:42:42 +01:00
#### Identity
```go
// Retreive tolen by authorization code
token, err := c.GrantNewAccessTokenFromAuthCode("<Authorization-Code>", "http://example.com/myapp/return.php")
// ... or by refresh token
token, err := c.GrantNewAccessTokenFromRefreshToken("<Refresh-Token>")
```
#### Retreive user information
```go
userInfo, err := c.GetUserInfo("openid")
```
2016-02-17 05:10:49 +01:00
#### Create single payout to email
```go
payout := paypalsdk.Payout{
SenderBatchHeader: &paypalsdk.SenderBatchHeader{
EmailSubject: "Subject will be displayed on PayPal",
},
Items: []paypalsdk.PayoutItem{
paypalsdk.PayoutItem{
RecipientType: "EMAIL",
Receiver: "single-email-payout@mail.com",
Amount: &paypalsdk.AmountPayout{
Value: "15.11",
Currency: "USD",
},
Note: "Optional note",
SenderItemID: "Optional Item ID",
},
},
}
payoutResp, err := c.CreateSinglePayout(payout)
```
2015-12-29 10:30:23 +01:00
#### How to Contribute
* Fork a repository
* Add/Fix something
* Run ./before-commit.sh to check that tests passed and code is formatted well
* Push to your repository
* Create pull request