ReOTP.
Packages développeurs/Bibliothèque ReOTP pour Node.js
1 min de lecture

Bibliothèque ReOTP pour Node.js

Une bibliothèque prête à l'emploi pour faciliter l'utilisation de ReOTP dans les applications Node.js/Next.js.

Au lieu d'écrire des requêtes HTTP manuellement, vous pouvez utiliser notre SDK simple pour intégrer ReOTP en quelques lignes.

Cette bibliothèque est un Wrapper prêt à l'emploi que vous pouvez copier directement dans votre projet sous les fichiers reotp.ts ou reotp.js et l'utiliser.

Fonctionnalités

  • Envoi automatique de l'Init et gestion des erreurs.
  • Fourniture d'une fonction pour SSE (Server-Sent Events) (vérification continue) intégrée.
  • Fourniture de types TypeScript puissants.
Code d'intégration (SDK)
export class ReOTPClient {
  private apiKey: string;
  private baseUrl: string;

  constructor(apiKey: string, baseUrl: string = "https://your-domain.com") {
    this.apiKey = apiKey;
    this.baseUrl = baseUrl;
  }

  async verify(phoneNumber: string, method: "WHATSAPP" | "TELEGRAM" = "WHATSAPP") {
    const res = await fetch(`${this.baseUrl}/api/verify/init`, {
      method: "POST",
      headers: { 
        "Content-Type": "application/json",
        "Authorization": `Bearer ${this.apiKey}`
      },
      body: JSON.stringify({ phoneNumber, method })
    });
    
    if (!res.ok) throw new Error(await res.text());
    return await res.json(); // { requestId, waLink, tgLink, expectedText }
  }

  async waitForVerification(requestId: string, timeoutMs: number = 120000): Promise<boolean> {
    return new Promise((resolve, reject) => {
      const EventSource = require('eventsource');
      const evtSource = new EventSource(`${this.baseUrl}/api/verify/stream?id=${requestId}`);

      const timeout = setTimeout(() => {
        evtSource.close();
        resolve(false);
      }, timeoutMs);

      evtSource.onmessage = (event: any) => {
        const data = JSON.parse(event.data);
        if (data.status === "VERIFIED") {
          clearTimeout(timeout);
          evtSource.close();
          resolve(true);
        } else if (data.status === "EXPIRED") {
          clearTimeout(timeout);
          evtSource.close();
          reject(new Error("Session expired"));
        } else if (data.status === "REJECTED") {
          clearTimeout(timeout);
          evtSource.close();
          reject(new Error(data.failureReason || "Session rejected"));
        }
      };

      evtSource.onerror = () => {
        // Fallback or retry logic can be added here
      };
    });
  }
}