mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-16 05:31:38 +00:00
docs: add prompt none to playground (#4894)
This commit is contained in:
parent
b7e5fcb97b
commit
2663d0ff13
@ -65,10 +65,13 @@ More in the [documentation](/apis/openidoauth/authn-methods) about authenticatio
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
<span className="text-cyan-500">Prompt</span> defines if and how the user
|
<span className="text-cyan-500">Prompt</span> defines if and how the user
|
||||||
should be prompted on login. For example you can pre-select a login name (
|
should be prompted on login. For example:
|
||||||
<code>select_account</code>) or present the register form (<code>create</code>
|
<ul>
|
||||||
) to users directly. The value <code>login</code> requires the user to
|
<li><code>select_account</code>: user is prompted to select one of the existing sessions or create a new one</li>
|
||||||
re-authenticate.
|
<li><code>create</code>: present the register form</li>
|
||||||
|
<li><code>login</code>: requires the user to re-authenticate</li>
|
||||||
|
<li><code>none</code>: user must be authenticated without interaction, an error is returned otherwise; use for silent-refresh</li>
|
||||||
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -36,7 +36,7 @@ export function SetAuthRequest() {
|
|||||||
|
|
||||||
const allResponseTypes = ["code", "id_token", "id_token token"];
|
const allResponseTypes = ["code", "id_token", "id_token token"];
|
||||||
|
|
||||||
const allPrompts = ["", "login", "select_account", "create"];
|
const allPrompts = ["", "login", "select_account", "create", "none"];
|
||||||
|
|
||||||
const allAuthMethods = ["(none) PKCE", "Client Secret Basic"];
|
const allAuthMethods = ["(none) PKCE", "Client Secret Basic"];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user