https://github.com/sagikazarmark/go-withings
Go client for the Withings API
https://github.com/sagikazarmark/go-withings
api-client withings
Last synced: 3 months ago
JSON representation
Go client for the Withings API
- Host: GitHub
- URL: https://github.com/sagikazarmark/go-withings
- Owner: sagikazarmark
- License: mit
- Created: 2021-10-25T17:31:20.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-09T17:58:46.000Z (over 2 years ago)
- Last Synced: 2025-04-02T13:50:08.682Z (6 months ago)
- Topics: api-client, withings
- Language: Go
- Homepage:
- Size: 115 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go client for the [Withings API](https://developer.withings.com/)
[](https://github.com/sagikazarmark/go-withings/actions?query=workflow%3ACI)
[](https://codecov.io/gh/sagikazarmark/go-withings)
[](https://goreportcard.com/report/github.com/sagikazarmark/go-withings)

[](https://pkg.go.dev/mod/github.com/sagikazarmark/go-withings)
[](https://builtwithnix.org)**go-withings is a Go client library for accessing the [Withings API](https://developer.withings.com/).**
**⚠️ WARNING: This is still work in progress. ⚠️**
## Installation
```shell
go get github.com/sagikazarmark/go-withings
```## API coverage
The Withings API provides a wide range of services, but many of them are targeted at (health) service providers.
The primary focus of this SDK is to provide access to the data APIs, so providing a full coverage is not a goal at this time.
That being said, PRs are always welcome.Supported API services/calls:
- OAuth2
- Measure (WIP)
- Heart (WIP)
- Sleep (WIP)
- Notify (WIP)Unsupported API services/calls:
- Dropshipment
- User
- SignatureFeel free to open a discussion or issue if something is missing and you would like it to be included.
## Development
When all coding and testing is done, please run the test suite:
```shell
make check
```For the best developer experience, install [Nix](https://builtwithnix.org/) and [direnv](https://direnv.net/).
Alternatively, install Go manually or using a package manager. Install the rest of the dependencies by running `make deps`.