Skip to main content

OAuth Management

The MachineMetrics CLI provides commands to manage OAuth clients for your applications.

OAuth Command

mmdev oauth [subcommand]

Manages OAuth clients for your MachineMetrics applications.

Available Subcommands

CommandDescription
dev-initCreate a new OAuth client for local development
dev-resetClear local development OAuth client information
add [options]Create a new OAuth client

Options for add Command

OptionDescription
-n, --name <name>Name of the client
-r, --redirect <redirect>Comma-separated redirect URIs
-h, --helpDisplay help for command

Usage Examples

  1. Initialize local development OAuth client:

    mmdev oauth dev-init
  2. Reset local development OAuth client:

    mmdev oauth dev-reset
  3. Add a new OAuth client:

    mmdev oauth add --name "My App" --redirect "http://localhost:3000/callback,https://myapp.com/callback"