Implicit flow (form post)

Construct a login link using the implicit flow. The tokens are returned via a form post to the application. See the OpenID Connect Core spec for details about these parameters.

Create the login link

What do I want to get back? Either id_token token or id_token
The client identifier
What do I want to have access to? Can be any of openid email profile phone. The openid scope is required.
Should the authorization server prompt me to reauthenticate and consent again? Options: none, login, consent, select_account.
Opaque value used to maintain state between the request and the callback.
Value used to associate a client session with an ID token, and to mitigate replay attacks.
Where the authorization server sends the browser back to after login.
How do I want to get the tokens back? form_post sends them as a form post instead of a URL fragment. See the OAuth 2.0 Form Post Response Mode spec.