Skip to content

ruby symbols are not properly converted to strings in the post #59

@jzwolak

Description

@jzwolak

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions