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.Signing.List(
context.TODO(),
)
}[
{
"kid": "21hi274Rp02112mgkUGma",
"cert": "-----BEGIN CERTIFICATE-----\r\nMIIDDTCCA...YiA0TQhAt8=\r\n-----END CERTIFICATE-----",
"fingerprint": "CC:FB:DD:D8:9A:B5:DE:1B:F0:CC:36:D2:99:59:21:12:03:DD:A8:25",
"thumbprint": "CCFBDDD89AB5DE1BF0CC36D29959211203DDA825",
"pkcs7": "-----BEGIN PKCS7-----\r\nMIIDPA....t8xAA==\r\n-----END PKCS7-----",
"current": true,
"next": true,
"previous": true,
"current_since": "<string>",
"current_until": "<string>",
"revoked": true,
"revoked_at": "<string>"
}
]Retrieve details of all the application signing keys associated with your tenant.
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.Signing.List(
context.TODO(),
)
}[
{
"kid": "21hi274Rp02112mgkUGma",
"cert": "-----BEGIN CERTIFICATE-----\r\nMIIDDTCCA...YiA0TQhAt8=\r\n-----END CERTIFICATE-----",
"fingerprint": "CC:FB:DD:D8:9A:B5:DE:1B:F0:CC:36:D2:99:59:21:12:03:DD:A8:25",
"thumbprint": "CCFBDDD89AB5DE1BF0CC36D29959211203DDA825",
"pkcs7": "-----BEGIN PKCS7-----\r\nMIIDPA....t8xAA==\r\n-----END PKCS7-----",
"current": true,
"next": true,
"previous": true,
"current_since": "<string>",
"current_until": "<string>",
"revoked": true,
"revoked_at": "<string>"
}
]Documentation Index
Fetch the complete documentation index at: https://auth0-quickstart-flutter-windows.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The signing keys were retrieved.
The key id of the signing key
The public certificate of the signing key
The cert fingerprint
The cert thumbprint
The public certificate of the signing key in pkcs7 format
True if the key is the the current key
True if the key is the the next key
True if the key is the the previous key
The date and time when the key became the current key
The date and time when the key became the current key
True if the key is revoked
The date and time when the key became the current key
このページは役に立ちましたか?