You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Indicates whether device binding security should be enforced for the app. If set to 'ip', the app will enforce device binding by IP, meaning that consumption of session_token must be done from the same IP of the issuer. Likewise, if set to 'asn', device binding is enforced by ASN, meaning consumption of session_token must be done from the same ASN as the issuer. If set to 'null', device binding is not enforced.
* Indicates whether Refresh Tokens are allowed to be issued when authenticating with a session_transfer_token.
2496
+
*
2497
+
*/
2498
+
allow_refresh_token?: boolean;
2499
+
/**
2500
+
* Indicates whether Refresh Tokens created during a native-to-web session are tied to that session's lifetime. This determines if such refresh tokens should be automatically revoked when their corresponding sessions are.
2501
+
*
2502
+
*/
2503
+
enforce_online_refresh_tokens?: boolean;
2504
+
/**
2505
+
* Indicates whether revoking the parent Refresh Token that initiated a Native to Web flow and was used to issue a Session Transfer Token should trigger a cascade revocation affecting its dependent child entities.
0 commit comments