Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waldirborbajr/golang-picpay
Está é uma biblioteca não oficial do picpay para a linguagem Golang.
https://github.com/waldirborbajr/golang-picpay
Last synced: 9 days ago
JSON representation
Está é uma biblioteca não oficial do picpay para a linguagem Golang.
- Host: GitHub
- URL: https://github.com/waldirborbajr/golang-picpay
- Owner: waldirborbajr
- License: bsd-3-clause
- Created: 2020-09-27T23:51:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-25T04:26:20.000Z (almost 2 years ago)
- Last Synced: 2024-11-15T06:31:50.304Z (2 months ago)
- Size: 21.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introdução
Olá! Este projeto é 100% Opensource e foi desenvolvido online no canal da [Spacedevs](https://twitch.tv/spacedevs) na Twitch.tv. O intuito deste projeto é oferecer as pessoas que usam a linguagem GO, um meio de pagamento rápido e fácil como o Picpay.
> Este projeto não é oficial da Picpay e não fomos patrocinados por ela.
### O que já foi feito?
- [x] Obter status de um pedido
- [x] Realizar pagamentos
- [x] Cancelar pagamento
- [ ] Notificações## Instalando
Para instalar o pacote você deve usar o comando a seguir:
```bash
go get https://github.com/marcuxyz/golang-picpay
```## Usando
Após instalar você deve chamar o pacote em seu código e começar a usar as APIS internas. Lembrando que antes de tentar criar um pagamento ou até mesmo obter o status do mesmo, você deve instânciar o objeto usando a função New()```golang
p := picpay.New("MEU_TOKEN_DO_PICPAY_VAI_AQUI")
```Agora, você pode usar para obter um status do pedido:
```golang
p.GetOrderStatus("234219")
```Ou até mesmo você pode usar para realizar um pagamento:
```golang
type Payment struct {
ReferenceID string `json:"referenceId"`
CallbackURL string `json:"callbackUrl"`
ReturnURL string `json:"returnUrl"`
Value float64 `json:"value"`
ExpiresAt string `json:"expiresAt"`
Buyer `json:"buyer"`
}type Buyer struct {
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
Document string `json:"document"`
Email string `json:"email"`
Phone string `json:"phone"`
}func main() {
p := picpay.New("MEU_TOKEN_DO_PICPAY_VAI_AQUI"))
payment := Payment{
ReferenceID: "827371918",
CallbackURL: "https://spacedevs.com.br/callbackurl",
ReturnURL: "https://spacedevs.com.br/",
Value: 0.10,
ExpiresAt: "2020-07-20T11:00:00-03:00",
Buyer: Buyer{
FirstName: "Marcus",
LastName: "Pereira",
Document: "123.456.789-10",
Email: "[email protected]",
Phone: "+55 71 12345-6789",
},
}
result, err := p.PayOrder(payment)
if err != nil {
panic(err)
}
for _, err := range result.Errors {
fmt.Println(err.Message)
}
}
```