Registry / auth / auth0-go-auth0

auth0-go-auth0

JSON →
library1.42.1gogounverified

Package auth0 is the Auth0 SDK for Go, providing clients for Authentication and Management APIs.

go get github.com/auth0/go-auth0
INSTALL
IMPORT
SIG · AUTH0-GO-AUTH0
A
auth0-go-auth0
authgov1.42.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

auth0
github.com/auth0/go-auth0

Lists users from Auth0 using the Management API client.

package main import ( "context" "fmt" "github.com/auth0/go-auth0/management" ) func main() { m, err := management.New("domain", management.WithClientCredentials("clientID", "clientSecret")) if err != nil { panic(err) } users, err := m.User.List(context.Background(), management.Page(0)) if err != nil { panic(err) } fmt.Println(users) }
Debug
Known issues
gotchaThe SDK uses a flat package structure; ensure you import the correct subpackage (e.g., management, authentication).
fix
Use import paths like github.com/auth0/go-auth0/management for specific functionality.
affects: >=1.0.0
Upgrade
Version history
1.42.1latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
23 hits · last 30 days
node
20
Resources
auth0-go-auth0 — go get auth0-go-auth0 · libregistry