The following does not work:
# Create Session Login Token MFA , after verify
session_login_token_mfa_params = {
username_or_email: "usermfa@example.com",
password: "Aa765432-YyY",
subdomain: "example-onelogin-subdomain"
}
Instead, it must read:
# Create Session Login Token MFA , after verify
session_login_token_mfa_params = {
"username_or_email" => "usermfa@example.com",
"password" => "Aa765432-YyY",
"subdomain" => "example-onelogin-subdomain"
}
Either convert the symbols to strings in the SDK or update the documentation and examples to use Ruby strings instead of symbols.