https://github.com/curtisallen/go-okta
incomplete okta client written in golang
https://github.com/curtisallen/go-okta
client okta okta-api
Last synced: about 1 year ago
JSON representation
incomplete okta client written in golang
- Host: GitHub
- URL: https://github.com/curtisallen/go-okta
- Owner: curtisallen
- License: mit
- Created: 2017-05-19T21:59:29.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-19T22:08:43.000Z (about 9 years ago)
- Last Synced: 2025-02-07T15:35:34.851Z (over 1 year ago)
- Topics: client, okta, okta-api
- Language: Go
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-okta
incomplete okta client written in golang
# Usage
client := NewClient("api token", "dev-532085", true, http.DefaultClient)
ctx := context.Background()
ctx, cancel := context.WithTimeout(ctx, 4*time.Second)
defer cancel()
group, err := client.Group(ctx, "groupId")