통합 가이드
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 커뮤니티 튜토리얼