統合ガイド
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.
API設定
エンドポイント:https://api.upload-post.com/api/upload
メソッド:POST
ヘッダー: Authorization: APIキー [YOUR_API_KEY] 注: Find your API key in your
Upload-Post Manage Api Keys
フォームデータの設定とMake.comのセットアップ
| フィールド | 値 | 必須 |
|---|---|---|
| title | あなたの動画タイトル | オプション |
| user | あなたのユーザー名 | 必須 |
| platform[] | tiktok | 必須 |
| video | バイナリファイル | 必須 |
Make.com設定: Follow these steps in Make.com:
- Add an HTTPモジュール: In your Make.com scenario, add an HTTP module and choose the "Make a Request" action.
- Configure the Request Settings:
- メソッド: Set to POST.
- URL: Enter
https://api.upload-post.com/api/upload. - ヘッダー: Add a header with:
- Key: Authorization
- 値:
APIキー [YOUR_API_KEY]
- Set the リクエストボディ: 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.,
- 保存とテスト: シナリオを保存し、APIを介して動画アップロードが正しく機能することを確認するためにテストを実行します。
高度な設定オプション
Instagramアップロード用
To upload to Instagram instead, simply change the platform value to instagram in your form data.
複数のプラットフォームへのアップロード
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 アプリキー in Make.com
- Upload-PostのAPIキーを定数として保存します。
- HTTPモジュールヘッダーに定数を参照してください
- シナリオを共有する際は、キーを公開しないシナリオの雛形を使用してください。
Example of referencing an API key constant in Make:
"headers": {
"認可": "APIキー {{constants.uploadPostApiKey}}"
} Need more guidance? Check out this detailed forum post:
Make.comコミュニティチュートリアル