https://github.com/joshdk/posh
Poshmark API client for the Go programming language
https://github.com/joshdk/posh
golang poshmark
Last synced: about 1 year ago
JSON representation
Poshmark API client for the Go programming language
- Host: GitHub
- URL: https://github.com/joshdk/posh
- Owner: joshdk
- License: mit
- Created: 2017-09-24T23:07:17.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-30T17:11:27.000Z (over 8 years ago)
- Last Synced: 2025-03-27T20:12:31.105Z (about 1 year ago)
- Topics: golang, poshmark
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 16
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://godoc.org/github.com/joshdk/posh)
[](https://goreportcard.com/report/github.com/joshdk/posh)
[](https://circleci.com/gh/joshdk/posh/tree/master)
# Posh
Poshmark API client for the Go programming language
## Installing
You can fetch this library by running the following
go get -u github.com/joshdk/posh
## Example
You can construct a simple client with the following
```go
creds := posh.Credentials{
Email: "me@example.com",
Password: "Pa$sw0rd",
}
config := posh.Config{
Credentials: &creds,
}
client, err := posh.NewClient(config)
if err != nil {
panic(err.Error())
}
fmt.Println(client.Session())
```
## License
This library is distributed under the [MIT License](https://opensource.org/licenses/MIT), see LICENSE.txt for more information.