Integrationsleitfaden

Upload-Post + Make Integration

Seamlessly connect your Upload-Post account with Make in 3 simple steps. Follow this visual guide to configure your API integration efficiently.

Starte mit Upload-Post

Ein Konto erstellen oder sich in Ihr bestehendes Konto einloggen

Open Upload-Post App

API-Konfiguration

Endpunkt: https://api.upload-post.com/api/upload
Methode: POST
Header:
Authorization: Apikey [YOUR_API_KEY]
Hinweis: Find your API key in your Upload-Post Manage Api Keys

Formulardatenkonfiguration & Make.com-Setup

Feld Wert Erforderlich
title Ihr Video Titel Optional
user Ihr Benutzername Erforderlich
platform[] tiktok Erforderlich
video Binärdatei Erforderlich
Make.com Konfiguration: Follow these steps in Make.com:
  • Add an HTTP-Modul: Fügen Sie in Ihrem Make.com-Szenario ein HTTP-Modul hinzu und wählen Sie die Aktion "Eine Anfrage stellen".
  • Configure the Request Settings:
    • Methode: Auf POST setzen.
    • URL: Enter https://api.upload-post.com/api/upload.
    • Header: Add a header with:
      • Key: Authorization
      • Wert: Apikey [YOUR_API_KEY]
    • Setzen Sie den Anforderungstext: Ändern Sie den Body-Typ zu multipart/form-data and add the following form fields:
      • title: Setzen Sie den value to your desired title (you can use a variable if needed, e.g., [YOUR TITLE]).
      • user: Geben Sie Ihren Benutzernamen ein, den Sie in Upload-Post festgelegt haben (z.B. [YOUR USERNAME]).
      • platform[]: Setzen Sie den value to tiktok.
      • video: Hängen Sie die Binärdatei an (Ihre Videodatei). Stellen Sie sicher, dass dieses Feld den Binärdaten zugeordnet ist, die Sie senden möchten.
  • Speichern und Testen: Speichern Sie Ihr Szenario und führen Sie einen Test durch, um sicherzustellen, dass der Video-Upload über die API korrekt funktioniert.

Erweiterte Konfigurationsoptionen

Für Instagram-Uploads

To upload to Instagram instead, simply change the platform value to instagram in your form data.

Hochladen auf mehrere Plattformen

To upload to both TikTok and Instagram simultaneously, add both platform values by creating multiple fields with the same name platform[] in the Make.com HTTP module.

Securely Storing API Keys in Make.com

For better security, avoid hardcoding your API key directly in scenarios:

  • Create an App Key in Make.com
  • Speichern Sie Ihren Upload-Post API-Schlüssel als Konstante
  • Verweisen Sie auf die Konstante in Ihren HTTP-Modul-Headern
  • Beim Teilen von Szenarien verwenden Sie Szenariovorlagen, die Ihre Schlüssel nicht offenlegen

Example of referencing an API key constant in Make:

"headers": {
  "Authorization": "Apikey {{constants.uploadPostApiKey}}"
}

Need more guidance? Check out this detailed forum post:

Make.com Community Tutorial

Brauchen Sie Hilfe?

Unsere Integrationsspezialisten sind hier, um zu helfen