Management API
Go
package example import ( client "github.com/auth0/go-auth0/management/client" option "github.com/auth0/go-auth0/management/option" context "context" ) func do() () { client := client.NewClient( option.WithToken( "<token>", ), ) client.Keys.CustomSigning.Delete( context.TODO(), ) }
Delete entire jwks representation of custom signing keys.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Custom signing keys were successfully deleted.
Cette page vous a-t-elle été utile ?