> ## 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.

# トラブルシューティング

> Auth0で一般的な問題を解決する方法をご紹介します。

export const AuthDocsPipeline = ({activeId}) => {
  const [hoveredId, setHoveredId] = useState(null);
  const VB_WIDTH = 1202;
  const VB_HEIGHT = 424;
  const AUTH_GROUP = new Set(['authenticate', 'provision-db', 'provision-social', 'add-login']);
  const CUSTOM_GROUP = new Set(['customize', 'brand', 'actions', 'extensions']);
  const STEPS = [{
    id: 'get-started',
    href: '/docs/get-started',
    cx: 53.7447,
    cy: 140.5572,
    r: 52
  }, {
    id: 'authenticate',
    href: '/docs/authenticate',
    cx: 239.164,
    cy: 140.5572,
    r: 52
  }, {
    id: 'manage-users',
    href: '/docs/manage-users',
    cx: 515.135,
    cy: 140.5572,
    r: 52
  }, {
    id: 'customize',
    href: '/docs/customize',
    cx: 791.106,
    cy: 140.5572,
    r: 52
  }, {
    id: 'deploy',
    href: '/docs/deploy-monitor',
    cx: 1147.57,
    cy: 140.5572,
    r: 52
  }, {
    id: 'secure',
    href: '/docs/secure',
    cx: 974,
    cy: 224,
    r: 44
  }, {
    id: 'provision-db',
    href: '/docs/authenticate#provision–database',
    cx: 67,
    cy: 410,
    r: 42
  }, {
    id: 'provision-social',
    href: '/docs/authenticate#provision–social',
    cx: 167,
    cy: 410,
    r: 42
  }, {
    id: 'add-login',
    href: '/docs/authenticate#add-login',
    cx: 312,
    cy: 410,
    r: 42
  }, {
    id: 'brand',
    href: '/docs/customize#brand',
    cx: 720,
    cy: 410,
    r: 42
  }, {
    id: 'actions',
    href: '/docs/customize#actions',
    cx: 864,
    cy: 410,
    r: 42
  }, {
    id: 'extensions',
    href: '/docs/customize#extensions',
    cx: 964,
    cy: 410,
    r: 42
  }];
  const addGroupToSet = (id, set) => {
    if (!id) return;
    if (AUTH_GROUP.has(id)) {
      AUTH_GROUP.forEach(gid => set.add(gid));
    } else if (CUSTOM_GROUP.has(id)) {
      CUSTOM_GROUP.forEach(gid => set.add(gid));
    } else {
      set.add(id);
    }
  };
  const lit = new Set();
  addGroupToSet(activeId, lit);
  addGroupToSet(hoveredId, lit);
  return <div className="pipeline-wrapper">
      <img src="/docs/images/site-graph.svg" alt="Auth0 docs pipeline" className="pipeline-img block dark:hidden" noZoom />
      <img src="/docs/images/site-graph-dark.svg" alt="Auth0 docs pipeline" className="pipeline-img hidden dark:block" noZoom />

      {STEPS.map(({id, cx, cy, r}) => {
    if (lit.has(id)) return null;
    const left = (cx - r) / VB_WIDTH * 100;
    const top = (cy - r) / VB_HEIGHT * 100;
    const size = 2 * r / VB_WIDTH * 100;
    return <div key={`dim-${id}`} className="pipeline-dim-circle" style={{
      left: `${left}%`,
      top: `${top}%`,
      width: `${size}%`
    }} />;
  })}

      {STEPS.map(({id, href, cx, cy, r}) => {
    const left = (cx - r) / VB_WIDTH * 100;
    const top = (cy - r) / VB_HEIGHT * 100;
    const size = 2 * r / VB_WIDTH * 100;
    return <a key={id} href={href} aria-label={id} className={`pipeline-hotspot${lit.has(id) ? ' lit' : ''}`} style={{
      left: `${left}%`,
      top: `${top}%`,
      width: `${size}%`
    }} onMouseEnter={() => setHoveredId(id)} onMouseLeave={() => setHoveredId(null)} />;
  })}
    </div>;
};

<AuthDocsPipeline />

Auth0には、プロによる複数レベルのサポートに加え、Auth0の実装について活発に話し合う開発者コミュニティも用意されています。トラブルシューティングのさまざまなトピックが、一般的な問題の解決に役立ちます。

***

<div id="get-support">
  ## サポートを受ける
</div>

<div id="learn-about-auth0s-support-plans-and-procedures-service-agreements-and-community">
  ##### Auth0が提供するサポートのプランと手順、サービス同意書、コミュニティについてご覧ください。
</div>

<Card title="カスタマーサポート" href="/docs/ja-JP/ja-jp/troubleshoot/customer-support">
  Auth0が提供する各種のサーポートレベルについて説明します。
</Card>

***

<div id="troubleshoot">
  ## トラブルシューティング
</div>

<div id="explore-solutions-to-common-challenges">
  ##### 一般的な課題の解決方法を確認できます。
</div>

<Card title="一般的な問題" href="/docs/ja-JP/ja-jp/troubleshoot/basic-issues">
  基本的なトラブルシューティングの方策について説明します。
</Card>

<Card title="認証の問題" href="/docs/ja-JP/ja-jp/troubleshoot/authentication-issues">
  ログインや他の認証に関する問題を解決します。
</Card>

<Card title="統合と拡張性の問題" href="/docs/ja-JP/ja-jp/troubleshoot/integration-extensibility-issues">
  サードパーティソリューションの統合に関する問題を解決します。
</Card>

<Card title="Deploy and Monitor Issues" href="/docs/ja-JP/ja-jp/troubleshoot/deploy-monitor-issues">
  Troubleshoot issues with deployment and monitoring.
</Card>

<Card title="トラブルシューティングツール" href="/docs/ja-JP/ja-jp/troubleshoot/troubleshooting-tools">
  HARファイルを生成して分析する方法、デバッグ方法、トークンを審査する方法について説明します。
</Card>

<Card title="デバッグのベストプラクティス" href="/docs/ja-JP/ja-jp/troubleshoot/debugging-best-practices">
  Auth0実装のデバッグに関するベストプラクティスについて説明します。
</Card>

<Card title="エラー処理のベストプラクティス" href="/docs/ja-JP/ja-jp/troubleshoot/error-handling-best-practices">
  エラー状態の処理に関するベストプラクティスについて説明します。
</Card>

<Card title="パフォーマンスのベストプラクティス" href="/docs/ja-JP/ja-jp/troubleshoot/performance-best-practices">
  パフォーマンスのベストプラクティスについて説明します。
</Card>

<Card title="一般的な使用と運用のベストプラクティス" href="/docs/ja-JP/ja-jp/troubleshoot/general-usage-and-operations-best-practices">
  Auth0の一般的な使用と運用についてのベストプラクティスを説明します。
</Card>

***

<div id="auth0-product-lifecycle">
  ## Auth0製品のライフサイクル
</div>

<div id="discover-our-iterative-approach-to-product-delivery">
  ##### 当社製品の反復的納品方式についてご覧ください。
</div>

<Card title="製品ライフサイクル" href="/docs/ja-JP/ja-jp/troubleshoot/product-lifecycle">
  Auth0がどのようにして常に改善されているのかを説明します。
</Card>
