Documentation Index
Fetch the complete documentation index at: https://auth0.generaltranslation.app/llms.txt
Use this file to discover all available pages before exploring further.
import React, { useState } from "react";
import {
useMfaWebAuthnChangeKeyNickname,
useUser,
useTenant,
useBranding,
useClient,
useOrganization,
usePrompt,
useUntrustedData,
} from "@auth0/auth0-acul-react/mfa-webauthn-change-key-nickname";
ブランディングおよびテーマ設定にアクセスするためのフック。import { useBranding } from '@auth0/auth0-acul-react/login-id';
function CustomTheme() {
const branding = useBranding();
}
Auth0 アプリケーション(クライアント)の設定にアクセスするためのフック。import { useClient } from '@auth0/auth0-acul-react/login-id';
function AppInfo() {
const client = useClient();
}
組織コンテキストと設定にアクセスするためのフック。import { useOrganization } from '@auth0/auth0-acul-react/login-id';
function OrgSelector() {
const organization = useOrganization();
if (!organization) {
return <p>組織コンテキストがありません</p>;
}
}
プロンプト設定およびフローの設定にアクセスするためのフック。import { usePrompt } from '@auth0/auth0-acul-react/login-id';
function FlowInfo() {
const prompt = usePrompt();
}
現在の画面情報とメタデータにアクセスするためのフック。現在の画面名、設定、および画面固有のデータを含む画面オブジェクト。import { useScreen } from '@auth0/auth0-acul-react/login-id';
function ScreenDebug() {
const screen = useScreen();
}
テナントの構成と設定にアクセスするためのフック。import { useTenant } from '@auth0/auth0-acul-react/login-id';
function TenantInfo() {
const tenant = useTenant();
}
トランザクションの state と認証フローのデータにアクセスするためのフック。import { useTransaction } from '@auth0/auth0-acul-react/login-id';
function TransactionInfo() {
const transaction = useTransaction();
}
URL パラメーターやフォーム送信から取得した、信頼できないデータにアクセスするためのフック。import { useUntrustedData } from '@auth0/auth0-acul-react/login-id';
function PrefilledForm() {
const untrustedData = useUntrustedData();
}
ユーザー情報およびプロファイルデータにアクセスするためのフック。import { useUser } from '@auth0/auth0-acul-react/login-id';
function UserProfile() {
const user = useUser();
}
プロパティWebAuthn セキュリティキーの新しいニックネームです。
これはユーザーが入力フィールドに入力した値です。
サーバーで定義された長さおよび使用可能な文字に関する制約に従う必要があります。
useMfaWebAuthnChangeKeyNickname