Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support SSO authentication in zesty auth login command #133

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ USAGE
<!-- commands -->
* [`zesty auth`](#zesty-auth)
* [`zesty auth get-user-token`](#zesty-auth-get-user-token)
* [`zesty auth login [EMAIL] [PASS]`](#zesty-auth-login-email-pass)
* [`zesty auth login [SERVICE]`](#zesty-auth-login-service)
* [`zesty auth signup [EMAIL] [PASS] [FIRSTNAME] [LASTNAME]`](#zesty-auth-signup-email-pass-firstname-lastname)
* [`zesty help [COMMANDS]`](#zesty-help-commands)
* [`zesty init`](#zesty-init)
Expand Down Expand Up @@ -63,26 +63,30 @@ DESCRIPTION
Show current user session token CLI is configured to use
```

## `zesty auth login [EMAIL] [PASS]`
## `zesty auth login [SERVICE]`

Command for authenticating with a Zesty.io account
Command for authenticating with a Zesty.io account using basic and SSO authentication

```
USAGE
$ zesty auth login [EMAIL] [PASS] [-h]
$ zesty auth login [SERVICE] [-h]

ARGUMENTS
EMAIL Your user account email
PASS Your user account password
SERVICE (zesty|microsoft|google|github|okta) The service to be used to login. Accepted values are zesty, microsoft,
google, github and okta

FLAGS
-h, --help Show CLI help.

DESCRIPTION
Command for authenticating with a Zesty.io account
Command for authenticating with a Zesty.io account using basic and SSO authentication

EXAMPLES
$ zesty auth:login [email protected] strong-password-for-security
$ zesty auth:login zesty

$ zesty auth:login google

$ zesty auth:login zesty
```

## `zesty auth signup [EMAIL] [PASS] [FIRSTNAME] [LASTNAME]`
Expand Down
Loading