File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,14 @@ class OktaAuthState(rx.State):
3939 Attributes:
4040 access_token: The OAuth 2.0 access token stored in local storage.
4141 id_token: The OpenID Connect ID token stored in local storage.
42- app_state: Random state parameter for CSRF protection.
43- code_verifier: PKCE code verifier for secure authorization.
44- redirect_to_url: URL to redirect to after successful authentication.
4542 error_message: Error message for authentication failures.
43+ is_iframed: Whether the app is running inside an iframe.
44+ from_popup: Whether the current page was opened as a popup.
45+
46+ _redirect_to_url: URL to redirect to after successful authentication.
47+ _app_state: Random state parameter for CSRF protection.
48+ _code_verifier: PKCE code verifier for secure authorization.
49+ _requested_scopes: Scopes requested during authentication.
4650 """
4751
4852 access_token : str = rx .LocalStorage ()
You can’t perform that action at this time.
0 commit comments