Panduan Integrasi
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.
Konfigurasi API
Endpoint:https://api.upload-post.com/api/upload
Metode:POST
Header: Authorization: Apikey [YOUR_API_KEY] Catatan: Find your API key in your
Upload-Post Manage Api Keys
Konfigurasi Data Formulir & Pengaturan Make.com
| Bidang | Nilai | Diperlukan |
|---|---|---|
| title | Judul video Anda | Opsional |
| user | Nama pengguna Anda | Diperlukan |
| platform[] | tiktok | Diperlukan |
| video | File biner | Diperlukan |
Konfigurasi Make.com: Follow these steps in Make.com:
- Add an Modul HTTP: In your Make.com scenario, add an HTTP module and choose the "Make a Request" action.
- Configure the Request Settings:
- Metode: Set to POST.
- URL: Enter
https://api.upload-post.com/api/upload. - Header: Add a header with:
- Key: Authorization
- Nilai:
Apikey [YOUR_API_KEY]
- Set the Badan Permintaan: Change the body type to
multipart/form-dataand add the following form fields:- title: Set the value to your desired title (you can use a variable if needed, e.g.,
[YOUR TITLE]). - user: Enter your username the one you setted in upload-post (e.g.,
[YOUR USERNAME]). - platform[]: Set the value to
tiktok. - video: Attach the binary file (your video file). Make sure this field is mapped to the binary data you want to send.
- title: Set the value to your desired title (you can use a variable if needed, e.g.,
- Simpan dan Uji: Simpan skenario Anda dan jalankan uji untuk memastikan bahwa pengunggahan video berfungsi dengan benar melalui API.
Opsi Konfigurasi Lanjutan
Untuk Unggahan Instagram
To upload to Instagram instead, simply change the platform value to instagram in your form data.
Mengunggah ke Beberapa Platform
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 Kunci Aplikasi in Make.com
- Simpan kunci API Upload-Post Anda sebagai konstanta
- Rujuk konstanta dalam header modul HTTP Anda
- Saat membagikan skenario, gunakan cetak biru skenario yang tidak mengekspos kunci Anda
Example of referencing an API key constant in Make:
"headers": {
"Otorisasi": "Apikey {{constants.uploadPostApiKey}}"
} Need more guidance? Check out this detailed forum post:
Tutorial Komunitas Make.com