Actions7
- Photo Post Actions
- Post Status Actions
- Search Actions
- User Profile Actions
- Video Post Actions
Overview
This node uploads video posts to TikTok. It supports uploading videos either by providing a publicly accessible URL for TikTok to pull the video from or by uploading a video file directly from binary data. Users can specify privacy settings for the video post and add optional fields such as captions, comment and duet restrictions, and whether the video is AI-generated. This node is useful for automating TikTok video uploads in workflows, such as scheduling posts or bulk uploading videos.
Use Case Examples
- Uploading a video to TikTok by providing a video URL and setting the post to be visible to everyone.
- Uploading a video file from binary data with a custom caption and disabling comments on the post.
Properties
| Name | Meaning |
|---|---|
| Source | Determines the method of uploading the video, either from a URL or a file upload. |
| Video URL | The publicly accessible URL from which TikTok will pull the video. Required if Source is 'Upload From URL'. |
| Binary Property | The name of the binary property containing the video file to upload. Required if Source is 'Upload File'. |
| Privacy Level | Specifies who can view the video post on TikTok. |
| Additional Fields | Optional settings for the video post, including brand content toggles, comment and duet restrictions, AI-generated content flag, caption, and video cover timestamp. |
Output
JSON
videoId- The unique identifier of the uploaded video post.status- The status of the upload operation, e.g., success or failure.message- Additional information or error messages related to the upload.
Dependencies
- TikTok API access with appropriate authentication credentials
Troubleshooting
- Ensure the video URL is publicly accessible if using the 'Upload From URL' source option.
- Verify the binary property name matches the actual binary data property when uploading a file.
- Check TikTok API rate limits and permissions if uploads fail.
- Common errors include invalid video URL, unsupported video format, or insufficient permissions. Verify all required fields are correctly set and credentials are valid.
Links
- TikTok Video Upload API Documentation - Official TikTok API documentation for uploading videos.