https://github.com/axatol/kinde-go
Kinde golang client
https://github.com/axatol/kinde-go
client golang kinde
Last synced: 5 months ago
JSON representation
Kinde golang client
- Host: GitHub
- URL: https://github.com/axatol/kinde-go
- Owner: axatol
- License: apache-2.0
- Created: 2024-09-20T12:06:59.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-08-16T10:37:11.000Z (10 months ago)
- Last Synced: 2025-08-16T11:35:21.106Z (10 months ago)
- Topics: client, golang, kinde
- Language: Go
- Homepage: https://pkg.go.dev/github.com/axatol/kinde-go
- Size: 222 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kinde-go
Kinde golang client
## getting started
### prerequisites
1. Create a M2M application and save the domain, client ID, and client secret
2. Authorise the application with the Kinde Management API and allow the relevant scopes
### quickstart
```go
package main
import "github.com/axatol/kinde-go"
func main() {
// load config from environment variables
// - KINDE_DOMAIN
// - KINDE_AUDIENCE
// - KINDE_CLIENT_ID
// - KINDE_CLIENT_SECRET
client := kinde.New(context.Background(), nil)
// or override some configuration, the unspecified values are loaded from the
// environment
client = kinde.New(
context.Background(),
kinde.NewClientOptions().
WithClientID("foo").
WithClientSecret("bar").
WithLogger(someLogger{})
)
}
```
## todo
- pagination
- rate-limiting