OAuth authorizations
heroku authorizations
heroku authorizations:create
heroku authorizations:destroy ID
heroku authorizations:info ID
heroku authorizations:revoke ID
heroku authorizations:rotate ID
heroku authorizations:update ID
list OAuth authorizations
USAGE
$ heroku authorizations [-j]
FLAGS
-j, --json output in json format
DESCRIPTION
list OAuth authorizations
EXAMPLES
$ heroku authorizations
See code: src/commands/authorizations/index.ts
create a new OAuth authorization
USAGE
$ heroku authorizations:create [-d <value>] [-S] [-j] [-s <value>] [-e <value>]
FLAGS
-S, --short only output token
-d, --description=<value> set a custom authorization
-e, --expires-in=<value> set expiration in seconds (default no expiration)
-j, --json output in json format
-s, --scope=<value> set custom OAuth scopes
DESCRIPTION
create a new OAuth authorization
EXAMPLES
$ heroku authorizations:create --description "For use with Anvil"
See code: src/commands/authorizations/create.ts
revoke OAuth authorization
USAGE
$ heroku authorizations:destroy ID
ARGUMENTS
ID ID of the authorization
DESCRIPTION
revoke OAuth authorization
ALIASES
$ heroku authorizations:revoke
$ heroku authorizations:destroy
EXAMPLES
$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb
show an existing OAuth authorization
USAGE
$ heroku authorizations:info ID [-j]
ARGUMENTS
ID ID of the authorization
FLAGS
-j, --json output in json format
DESCRIPTION
show an existing OAuth authorization
See code: src/commands/authorizations/info.ts
revoke OAuth authorization
USAGE
$ heroku authorizations:revoke ID
ARGUMENTS
ID ID of the authorization
DESCRIPTION
revoke OAuth authorization
ALIASES
$ heroku authorizations:revoke
$ heroku authorizations:destroy
EXAMPLES
$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb
See code: src/commands/authorizations/revoke.ts
updates an OAuth authorization token
USAGE
$ heroku authorizations:rotate ID
ARGUMENTS
ID ID of the authorization
DESCRIPTION
updates an OAuth authorization token
See code: src/commands/authorizations/rotate.ts
updates an OAuth authorization
USAGE
$ heroku authorizations:update ID [-d <value>] [--client-id <value> --client-secret <value>]
ARGUMENTS
ID ID of the authorization
FLAGS
-d, --description=<value> set a custom authorization description
--client-id=<value> identifier of OAuth client to set
--client-secret=<value> secret of OAuth client to set
DESCRIPTION
updates an OAuth authorization
See code: src/commands/authorizations/update.ts