시작하기
이 플러그인의 설치 단계와 전체 마크다운 가이드를 포함한 설정 지시를 복사하세요.
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-ssl-pinning`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/ssl-pinning/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
설치
설치 제목bun add @capgo/capacitor-ssl-pinningbunx cap sync임포트
임포트 제목import { SSLPinning } from '@capgo/capacitor-ssl-pinning';API 개요
API 개요getConfiguration
__CAPGO_KEEP_0__ 개요활성 네이티브 구성이 플러그인에 표시되는 현재 구성 반환
import { SSLPinning } from '@capgo/capacitor-ssl-pinning';
await SSLPinning.getConfiguration();타입 참조
타입 참조SSLPinningConfigurationState
플러그인에 표시되는 현재 SSL pinning 구성클립보드 복사
export interface SSLPinningConfigurationState { /** * Whether at least one certificate is configured for native pinning. */ configured: boolean;
/** * Certificate paths from `capacitor.config.*` relative to the app root. */ certs: string[];
/** * Fully-qualified URLs that should bypass SSL pinning. */ excludedDomains: string[];}PluginVersionResult
클립보드 복사__CAPGO_KEEP_0__ 개요
export interface PluginVersionResult { /** * Version identifier returned by the platform implementation. */ version: string;}실제 데이터 원천
실제 데이터 원천 섹션이 페이지는 플러그인의 src/definitions.ts. upstream에서 pubic API이 변경되었을 때 다시 싱크를 실행하세요.