Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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