Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiwih/go-shopify
Golang tool for connecting to Shopify's API
https://github.com/kiwih/go-shopify
Last synced: 9 days ago
JSON representation
Golang tool for connecting to Shopify's API
- Host: GitHub
- URL: https://github.com/kiwih/go-shopify
- Owner: kiwih
- License: gpl-3.0
- Created: 2014-03-18T01:30:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-19T13:04:47.000Z (over 8 years ago)
- Last Synced: 2024-08-02T12:22:17.101Z (3 months ago)
- Language: Go
- Size: 2.89 MB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-shopify - go-shopify - Golang tool for connecting to Shopify's API. (Libraries / Golang)
README
go-shopify
==========Golang tool for connecting to Shopify's API
## Installation
You need to have Git and Go already installed.
Run this in your terminal```sh
go get github.com/arduino/go-shopify
```## Usage
Import it in your Go code:
```go
import (
"github.com/arduino/go-shopify/shopify"
)
```## Client Creation
To initialize a client you need the shopify private app password
```go
shop := shopify.NewClient("your-shop-domain", "app-password")
```See client functions used in example/example.go