FedCm#

This domain allows interacting with the FedCM dialog.

This CDP domain is experimental.

Types#

Generally, you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.

class LoginState(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]#

Whether this is a sign-up or sign-in action for this account, i.e. whether this account has ever been used to sign in to this RP before.

SIGN_IN = 'SignIn'#
SIGN_UP = 'SignUp'#
class DialogType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]#

The types of FedCM dialogs.

ACCOUNT_CHOOSER = 'AccountChooser'#
AUTO_REAUTHN = 'AutoReauthn'#
CONFIRM_IDP_LOGIN = 'ConfirmIdpLogin'#
ERROR = 'Error'#
class DialogButton(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]#

The buttons on the FedCM dialog.

CONFIRM_IDP_LOGIN_CONTINUE = 'ConfirmIdpLoginContinue'#
ERROR_GOT_IT = 'ErrorGotIt'#
ERROR_MORE_DETAILS = 'ErrorMoreDetails'#
class AccountUrlType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]#

The URLs that each account has

TERMS_OF_SERVICE = 'TermsOfService'#
PRIVACY_POLICY = 'PrivacyPolicy'#
class Account(account_id, email, name, given_name, picture_url, idp_config_url, idp_login_url, login_state, terms_of_service_url=None, privacy_policy_url=None)[source]#

Corresponds to IdentityRequestAccount

account_id: str#
email: str#
name: str#
given_name: str#
picture_url: str#
idp_config_url: str#
idp_login_url: str#
login_state: LoginState#
terms_of_service_url: Optional[str] = None#

These two are only set if the loginState is signUp

privacy_policy_url: Optional[str] = None#

Commands#

Each command is a generator function. The return type Generator[x, y, z] indicates that the generator yields arguments of type x, it must be resumed with an argument of type y, and it returns type z. In this library, types x and y are the same for all commands, and z is the return type you should pay attention to. For more information, see Getting Started: Commands.

click_dialog_button(dialog_id, dialog_button)[source]#
Parameters:
Return type:

Generator[Dict[str, Any], Dict[str, Any], None]

disable()[source]#
Return type:

Generator[Dict[str, Any], Dict[str, Any], None]

dismiss_dialog(dialog_id, trigger_cooldown=None)[source]#
Parameters:
Return type:

Generator[Dict[str, Any], Dict[str, Any], None]

enable(disable_rejection_delay=None)[source]#
Parameters:

disable_rejection_delay (Optional[bool]) – (Optional) Allows callers to disable the promise rejection delay that would normally happen, if this is unimportant to what’s being tested. (step 4 of https://fedidcg.github.io/FedCM/#browser-api-rp-sign-in)

Return type:

Generator[Dict[str, Any], Dict[str, Any], None]

open_url(dialog_id, account_index, account_url_type)[source]#
Parameters:
Return type:

Generator[Dict[str, Any], Dict[str, Any], None]

reset_cooldown()[source]#

Resets the cooldown time, if any, to allow the next FedCM call to show a dialog even if one was recently dismissed by the user.

Return type:

Generator[Dict[str, Any], Dict[str, Any], None]

select_account(dialog_id, account_index)[source]#
Parameters:
  • dialog_id (str) –

  • account_index (int) –

Return type:

Generator[Dict[str, Any], Dict[str, Any], None]

Events#

Generally, you do not need to instantiate CDP events yourself. Instead, the API creates events for you and then you use the event’s attributes.

class DialogShown(dialog_id, dialog_type, accounts, title, subtitle)[source]#
dialog_id: str#
dialog_type: DialogType#
accounts: List[Account]#
title: str#

These exist primarily so that the caller can verify the RP context was used appropriately.

subtitle: Optional[str]#
class DialogClosed(dialog_id)[source]#

Triggered when a dialog is closed, either by user action, JS abort, or a command below.

dialog_id: str#