https://github.com/leebenson/paypal
PayPal Website Payments Pro API for Go (golang)
https://github.com/leebenson/paypal
Last synced: 8 months ago
JSON representation
PayPal Website Payments Pro API for Go (golang)
- Host: GitHub
- URL: https://github.com/leebenson/paypal
- Owner: leebenson
- License: mit
- Archived: true
- Created: 2014-09-21T13:18:39.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-03-07T21:36:13.000Z (over 9 years ago)
- Last Synced: 2025-03-13T23:14:05.585Z (over 1 year ago)
- Language: Go
- Size: 62.5 KB
- Stars: 38
- Watchers: 10
- Forks: 24
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Payment REST API Go client
[](https://godoc.org/github.com/leebenson/paypal)
This is a client for the Paypal REST API ([https://developer.paypal.com/webapps/developer/docs/api/](https://developer.paypal.com/webapps/developer/docs/api/)
## Goals
- [x] Automated tests that don't require manual approval in Paypal account
- [ ] Automated tests that require manual approval in a Paypal account (with a different build tag, eg. `PAYPAL_APPROVED_PAYMENT_ID`
- [ ] Concurrency safety by utilizing `PayPal-Request-Id`
## Usage
```bash
go get github.com/leebenson/paypal
```
Import into your app and start using it:
```go
package main
import (
"fmt"
"log"
"os"
"github.com/leebenson/paypal"
)
func main() {
clientID := os.Getenv("PAYPAL_CLIENTID")
if clientID == "" {
panic("PayPal clientID is missing")
}
secret := os.Getenv("PAYPAL_SECRET")
if secret == "" {
panic("PayPal secret is missing")
}
client := paypal.NewClient(clientID, secret, paypal.APIBaseLive)
payments, err := client.ListPayments(map[string]string{
"count": "10",
"sort_by": "create_time",
})
if err != nil {
log.Fatal("Could not retrieve payments: ", err)
}
fmt.Println(payments)
}
```
## Run tests
This library use [Goconvey](http://goconvey.co/) for tests, so to run them, start Goconvey:
```
PAYPAL_TEST_CLIENTID=[Paypal Client ID] PAYPAL_TEST_SECRET=[Paypal Secret] goconvey
```
Or you can just use `go test`
```
PAYPAL_TEST_CLIENTID=[Paypal Client ID] PAYPAL_TEST_SECRET=[Paypal Secret] go test
```
## Roadmap
- [x] [Payments - Payment](https://developer.paypal.com/webapps/developer/docs/api/#payments)
- [x] [Payments - Sale transactions](https://developer.paypal.com/webapps/developer/docs/api/#sale-transactions)
- [x] [Payments - Refunds](https://developer.paypal.com/webapps/developer/docs/api/#refunds)
- [x] [Payments - Authorizations](https://developer.paypal.com/webapps/developer/docs/api/#authorizations)
- [x] [Payments - Captures](https://developer.paypal.com/webapps/developer/docs/api/#billing-plans-and-agreements)
- [ ] [Payments - Billing Plans and Agreements](https://developer.paypal.com/webapps/developer/docs/api/#billing-plans-and-agreements)
- [ ] [Payments - Order](https://developer.paypal.com/webapps/developer/docs/api/#orders)
- [ ] [Vault](https://developer.paypal.com/webapps/developer/docs/api/#vault)
- [ ] [Identity](https://developer.paypal.com/webapps/developer/docs/api/#identity)
- [ ] [Invoicing](https://developer.paypal.com/webapps/developer/docs/api/#invoicing)
- [ ] [Payment Experience](https://developer.paypal.com/webapps/developer/docs/api/#payment-experience)