diff --git a/docs/manage/manage/oauth.md b/docs/manage/manage/oauth.md index 569d0e5ee1..294d0022e5 100644 --- a/docs/manage/manage/oauth.md +++ b/docs/manage/manage/oauth.md @@ -60,7 +60,7 @@ viam organization auth-service oauth-app create --client-authentication=required --client-name="OAuth Test App" --enabled-grants="password, authorization_code" \ --logout-uri="https://logoipsum.com/logout" --origin-uris="https://logoipsum.com,http://localhost:3000" \ --pkce=not_required --redirect-uris="https://logoipsum.com/oauth-redirect,http://localhost:3000/oauth-redirect" \ - --url-validation=allow_wildcards --org-id= + --url-validation=allow_wildcards --invite-redirect-uri="https://logoipsum.com" --org-id= Successfully created OAuth app OAuth Test App with client ID and client secret ``` @@ -78,6 +78,7 @@ Successfully created OAuth app OAuth Test App with client ID and cli | `--pkce` | Proof Key for Code Exchange (PKCE) for the OAuth application. Options: `unspecified`, `required`, `not_required`, `not_required_when_using_client_authentication`. Default: `unspecified`. | **Required** | | `--redirect-uris` | Comma-separated redirect URIs for the OAuth application. | **Required** | | `--url-validation` | URL validation for the OAuth application. Options: `unspecified`, `exact_match`, `allow_wildcards`. Default: `unspecified`. | **Required** | +| `--invite-redirect-uri` | The redirect link to send a user when they accept an org invite. | Optional | {{% /expand%}} @@ -98,6 +99,7 @@ Client Authentication: required PKCE (Proof Key for Code Exchange): not_required URL Validation Policy: allow_wildcards Logout URL: https://logoipsum.com/logout +Invite Redirect URL: https://logoipsum.com Redirect URLs: https://logoipsum.com/oauth-redirect, http://localhost:3000/oauth-redirect Origin URLs: https://logoipsum.com, http://localhost:3000 Enabled Grants: authorization_code, password