0Pricing
Supabase Backend as a Service · 강의

외부 서비스와 통합하기

앱의 기능을 확장할 수 있도록 수파베이스 백엔드를 타사 API 및 서비스와 연결하는 패턴을 학습합니다.

외부 서비스와 통합하기은(는) CoddyKit의 무료 Supabase Backend as a Service 강의입니다. 이것은 3개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Supabase Backend as a Service 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Supabase Backend as a Service 강의에는 총 3개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

Why External Services?

Your app often needs to do more than just manage data in Supabase. Think about sending emails, processing payments, or integrating AI tools.

This is where integrating with external services comes in! It allows your Supabase backend to communicate with other APIs and platforms to extend your application's capabilities.

Common Integration Needs

Many common app features rely on external services:

  • Payment Gateways: Stripe, PayPal for transactions.
  • Email/SMS: SendGrid, Twilio for notifications.
  • AI/ML APIs: OpenAI, Google Cloud AI for advanced features.
  • Geo-location: Google Maps, Mapbox for mapping services.
  • Analytics: Mixpanel, Segment for user behavior tracking.

Supabase's Role: Edge Functions

While your client-side app can call external APIs directly, for secure and backend-driven integrations, Supabase Edge Functions are your best friend.

Edge Functions act as serverless backend logic, running close to your users. They can make HTTP requests to any external API without exposing sensitive information directly in your client-side code.

Making an API Call with Deno

Supabase Edge Functions are built on Deno, which uses the standard fetch API for making network requests, similar to browsers. This makes it straightforward to interact with external services.

The flow is: your client invokes an Edge Function, which then makes a request to the external API, processes the response, and sends it back to your client.

Code Demo: Fetching External Data

Here's a simple Edge Function that fetches a random 'todo' item from a public API (JSONPlaceholder). Notice how we use Deno.serve as the entry point for the function.

import { serve } from 'https://deno.land/std@0.177.0/http/server.ts'

Deno.serve(async (req) => {
  const { name } = await req.json()

  try {
    const response = await fetch('https://jsonplaceholder.typicode.com/todos/1')
    const data = await response.json()

    return new Response(JSON.stringify({
      message: `Hello ${name}! Here's a todo: ${data.title}`,
    }), {
      headers: { 'Content-Type': 'application/json' },
      status: 200,
    })
  } catch (error) {
    return new Response(JSON.stringify({
      error: error.message,
    }), {
      headers: { 'Content-Type': 'application/json' },
      status: 500,
    })
  }
})

Invoking the Edge Function

Once deployed, your client-side application can invoke this Edge Function using the Supabase client library. The function name here would be, for example, 'fetch-todo'.

The invoke method handles sending data to your function and receiving its response.

// Client-side JavaScript
async function getTodoFromEdgeFunction() {
  try {
    const { data, error } = await supabase.functions.invoke('fetch-todo', {
      body: { name: 'CoddyKit User' },
    })

    if (error) {
      console.error('Function error:', error)
    } else {
      console.log('Function response:', data)
    }
  } catch (err) {
    console.error('Invocation error:', err)
  }
}

// Call the function (e.g., on button click)
// getTodoFromEdgeFunction();

Securing API Keys with Supabase Secrets

Hardcoding API keys directly into your Edge Function code is a security risk. If your code is ever exposed, your keys are compromised.

Supabase provides Secrets to securely store environment variables for your Edge Functions. These are not part of your codebase and are injected at runtime.

Using Secrets in Edge Functions

First, you'd set a secret using the Supabase CLI: supabase secrets set MY_EXTERNAL_API_KEY=your_key_here. Then, in your Edge Function, you access it via Deno.env.get('MY_EXTERNAL_API_KEY').

This keeps your sensitive credentials safe and out of your version control.

import { serve } from 'https://deno.land/std@0.177.0/http/server.ts'

Deno.serve(async (req) => {
  // Access the secret environment variable
  const apiKey = Deno.env.get('MY_EXTERNAL_API_KEY') || 'NO_KEY_SET'

  // Example: Use the apiKey in a header for an external API call
  // const response = await fetch('https://api.example.com/data', {
  //   headers: { 'Authorization': `Bearer ${apiKey}` },
  // })

  return new Response(JSON.stringify({
    message: `API Key accessed: ${apiKey.substring(0, 5)}...`,
  }), {
    headers: { 'Content-Type': 'application/json' },
    status: 200,
  })
})

Handling Responses & Errors Robustly

When integrating external services, always prepare for success and failure. Parse the API's response correctly (often JSON) and handle potential errors.

  • Check HTTP Status: Not all 2xx responses are successes; some APIs use 4xx for business logic errors.
  • Try-Catch Blocks: Essential for network errors or issues parsing responses.
  • Meaningful Error Messages: Return clear error messages to the client without exposing internal API details.

Best Practices for Integrations

To ensure robust and scalable integrations:

  • Rate Limiting: Respect external API rate limits to avoid getting blocked.
  • Retries: Implement exponential backoff for transient network issues.
  • Timeouts: Set reasonable timeouts for external requests to prevent hanging.
  • Logging: Log requests and responses (especially errors) for debugging.
  • Idempotency: Design your functions to handle duplicate requests gracefully for operations like payments.

Quick Check on Integration

You're building an Edge Function to send an email using an external email API. You need to include your email service API key.

Recap: Integrating External Services

You've learned how to extend your Supabase application's capabilities by integrating with external APIs and services.

  • Edge Functions are ideal for secure backend-to-external-service communication.
  • Use fetch within Deno Edge Functions to make HTTP requests.
  • Always secure sensitive credentials like API keys using Supabase Secrets.
  • Implement robust error handling and follow best practices for reliable integrations.

This opens up a world of possibilities for building powerful and feature-rich applications!

자주 묻는 질문

“외부 서비스와 통합하기” 강의는 무료인가요?

네 — “외부 서비스와 통합하기” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Supabase Backend as a Service 강의 전체를 잠금 해제할 수 있습니다. Supabase Backend as a Service 강의에는 총 3개의 강의가 포함되어 있습니다.

“외부 서비스와 통합하기”에서 뭘 배우나요?

앱의 기능을 확장할 수 있도록 수파베이스 백엔드를 타사 API 및 서비스와 연결하는 패턴을 학습합니다. 브라우저에서 직접 실행하는 실습 코드로 Supabase Backend as a Service을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

Supabase Backend as a Service을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 Supabase Backend as a Service은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 3개 중 1번째 강의입니다.

“외부 서비스와 통합하기” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 Supabase Backend as a Service 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 Supabase Backend as a Service 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. 외부 서비스와 통합하기
  2. 수파베이스와 워커를 활용한 작업 큐
  3. pg_cron으로 반복 작업 예약하기
← Supabase Backend as a Service(으)로 돌아가기