import { AlertCircle, Copy, Eye, Link2, Shield, Workflow } from "lucide-react"; import { Link } from "react-router-dom"; import { Badge } from "../../components/ui/badge"; import { Button } from "../../components/ui/button"; import { Card, CardContent } from "../../components/ui/card"; import { Separator } from "../../components/ui/separator"; import { Table, TableBody, TableCell, TableRow, } from "../../components/ui/table"; const endpoints = [ { label: "Discovery Endpoint", value: "https://auth.acme-idp.com/.well-known/openid-configuration", }, { label: "Issuer URL", value: "https://auth.acme-idp.com/" }, { label: "Authorization Endpoint", value: "https://auth.acme-idp.com/oauth2/authorize", }, { label: "Token Endpoint", value: "https://auth.acme-idp.com/oauth2/token" }, { label: "UserInfo Endpoint", value: "https://auth.acme-idp.com/oauth2/userinfo", }, ]; function ClientDetailsPage() { return (
Relying Parties / 클라이언트 상세

Developer Portal App

OIDC 자격 증명과 엔드포인트를 관리합니다.

Active
Overview Consent & Users Settings

클라이언트 자격 증명

Client ID

721948305612-oidc-client-prod

Client Secret

••••••••••••••••

OIDC 엔드포인트

읽기 전용
{endpoints.map((endpoint) => (

{endpoint.label}

{endpoint.value}
))}

보안 메모

엔드포인트는 읽기 전용으로 유지하고, 비밀키 재발행/복사는 감사 로그와 연계하세요.

감사 이벤트 필요

비밀키 재발행 작업에는 관리자 세션 TTL 확인과 레이트리밋, 알림 연동을 권장합니다.

); } export default ClientDetailsPage;