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.
1 parent 29f053e commit 5e70cdeCopy full SHA for 5e70cde
cmd/cmd_get_client.go
@@ -18,9 +18,9 @@ func NewGetClientsCmd() *cobra.Command {
18
Args: cobra.MinimumNArgs(1),
19
Short: "Get one or more OAuth 2.0 Clients by their ID(s)",
20
Long: `This command gets all the details about an OAuth 2.0 Client. You can use this command in combination with jq.`,
21
- Example: `To get the OAuth 2.0 Client's secret, run:
+ Example: `To get the OAuth 2.0 Client's name, run:
22
23
- {{ .CommandPath }} <your-client-id> --format json | jq -r '.client_secret'`,
+ {{ .CommandPath }} <your-client-id> --format json | jq -r '.client_name'`,
24
RunE: func(cmd *cobra.Command, args []string) error {
25
m, _, err := cliclient.NewClient(cmd)
26
if err != nil {
0 commit comments