We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 732b4b6 + 7731afd commit 398e0e2Copy full SHA for 398e0e2
internal/cli/apps.go
@@ -201,6 +201,7 @@ func createAppCmd(cli *cli) *cobra.Command {
201
Grants []string
202
}
203
var oidcConformant = true
204
+ var algorithm = "RS256"
205
206
cmd := &cobra.Command{
207
Use: "create",
@@ -247,6 +248,7 @@ auth0 apps create --name myapp --type [native|spa|regular|m2m]
247
248
AllowedLogoutURLs: stringToInterfaceSlice(flags.AllowedLogoutURLs),
249
TokenEndpointAuthMethod: apiAuthMethodFor(flags.AuthMethod),
250
OIDCConformant: &oidcConformant,
251
+ JWTConfiguration: &management.ClientJWTConfiguration{Algorithm: &algorithm},
252
253
254
if len(flags.Grants) == 0 {
0 commit comments