技能 编程开发 Persona身份验证API客户端

Persona身份验证API客户端

v20260423
persona-sdk-patterns
这是一个用于连接Persona身份验证服务的TypeScript客户端封装。它封装了复杂的API调用逻辑,提供了创建、查询和分页获取身份验证信息的功能。核心特色包括单例模式、类型化响应以及强大的错误分类器,能够智能判断是否需要重试(如处理限速或服务器错误),确保生产级应用的稳定性和可靠性。
获取技能
355 次下载
概览

persona sdk patterns | sed 's/\b(.)/\u\1/g'

Overview

Singleton API client, typed verification results, pagination through inquiries, error classification.

Prerequisites

  • Completed persona-install-auth setup
  • Valid Persona API key (sandbox or production)

Instructions

Step 1: Typed API Client Wrapper

import axios, { AxiosInstance, AxiosError } from 'axios';

interface PersonaConfig {
  apiKey: string;
  version?: string;
  baseURL?: string;
}

class PersonaClient {
  private http: AxiosInstance;

  constructor(config: PersonaConfig) {
    this.http = axios.create({
      baseURL: config.baseURL || 'https://withpersona.com/api/v1',
      headers: {
        'Authorization': `Bearer ${config.apiKey}`,
        'Persona-Version': config.version || '2023-01-05',
        'Content-Type': 'application/json',
      },
    });
  }

  async createInquiry(templateId: string, referenceId: string, fields?: Record<string, any>) {
    const { data } = await this.http.post('/inquiries', {
      data: { attributes: { 'inquiry-template-id': templateId, 'reference-id': referenceId, fields } },
    });
    return data.data;
  }

  async getInquiry(inquiryId: string) {
    const { data } = await this.http.get(`/inquiries/${inquiryId}`);
    return data.data;
  }

  async listInquiries(params: { referenceId?: string; status?: string; pageSize?: number } = {}) {
    const { data } = await this.http.get('/inquiries', {
      params: {
        'filter[reference-id]': params.referenceId,
        'filter[status]': params.status,
        'page[size]': params.pageSize || 25,
      },
    });
    return data.data;
  }

  async getVerification(verificationId: string) {
    const { data } = await this.http.get(`/verifications/${verificationId}`);
    return data.data;
  }
}

// Singleton
let _client: PersonaClient | null = null;
export function getPersonaClient(): PersonaClient {
  if (!_client) {
    _client = new PersonaClient({ apiKey: process.env.PERSONA_API_KEY! });
  }
  return _client;
}

Step 2: Error Classification

function classifyPersonaError(error: AxiosError): { retryable: boolean; message: string } {
  const status = error.response?.status;
  if (status === 429) return { retryable: true, message: 'Rate limited' };
  if (status && status >= 500) return { retryable: true, message: 'Server error' };
  if (status === 401) return { retryable: false, message: 'Invalid API key' };
  if (status === 422) return { retryable: false, message: 'Invalid request' };
  return { retryable: false, message: error.message };
}

Output

  • Typed Persona API client with inquiry and verification methods
  • Singleton pattern for reuse
  • Error classification for retry decisions
  • Paginated inquiry listing

Error Handling

Pattern Use Case Benefit
Singleton All API calls One client, consistent headers
Error classifier Retry decisions Only retry 429/5xx
Typed responses Data access Autocomplete, type safety

Resources

Next Steps

Apply in persona-core-workflow-a for real KYC flows.

信息
Category 编程开发
Name persona-sdk-patterns
版本 v20260423
大小 3.66KB
更新时间 2026-04-28
语言