> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plugkit.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Callback OAuth appelé par Meta/TikTok après autorisation



## OpenAPI

````yaml /api-reference/openapi.json get /v1/connect/{platform}/callback
openapi: 3.0.0
info:
  title: PlugKit API
  description: >-
    One API to publish, read, and reply across Instagram, WhatsApp, TikTok,
    YouTube, X & Telegram — built for AI agents. Authenticate every request with
    a Bearer API key (sk_…).
  version: 0.1.0
  contact: {}
servers:
  - url: https://api.plugkit.co
    description: Production
security:
  - api-key: []
tags: []
paths:
  /v1/connect/{platform}/callback:
    get:
      tags:
        - connect
      summary: Callback OAuth appelé par Meta/TikTok après autorisation
      operationId: ConnectController_callback
      parameters:
        - name: platform
          required: true
          in: path
          schema:
            type: string
        - name: code
          required: true
          in: query
          schema:
            type: string
        - name: state
          required: true
          in: query
          schema:
            type: string
        - name: error
          required: true
          in: query
          schema:
            type: string
        - name: error_description
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
components:
  securitySchemes:
    api-key:
      type: http
      scheme: bearer
      bearerFormat: sk_...

````