Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Go
package example import ( context "context" client "github.com/auth0/go-auth0/management/management/client" option "github.com/auth0/go-auth0/management/management/option" ) func do() { client := client.NewClient( option.WithToken( "<token>", ), ) client.Keys.CustomSigning.Get( context.TODO(), ) }
{ "keys": [ { "e": "<string>", "key_ops": [], "kid": "<string>", "n": "<string>", "x": "<string>", "x5c": [ "<string>" ], "x5t": "<string>", "x5t#S256": "<string>", "x5u": "<string>", "y": "<string>" } ] }
カスタム署名鍵の JWKS 表現全体を取得します。
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
カスタム署名鍵を正常に取得しました。
カスタム公開署名鍵の配列を表す JWKS。
カスタム公開署名鍵の配列。
Show child attributes