Actions7
- Search Actions
- User Profile Actions
- Photo Post Actions
- Post Status Actions
- Video Post Actions
Overview
This node interacts with the TikTok API to retrieve the status of a post upload using a specific Publish ID. It is useful for scenarios where you need to check the progress or result of a video or content upload to TikTok, such as confirming if a post has been successfully published or if there were any errors during the upload process.
Use Case Examples
- A social media manager automates the process of uploading videos to TikTok and uses this node to programmatically check the status of each upload to ensure successful publication.
- A content automation tool integrates with TikTok to monitor the status of scheduled posts and notify users when their content is live or if any issues occurred.
Properties
| Name | Meaning |
|---|---|
| Publish ID | Identifier returned when initiating the post upload, used to query the status of that specific post upload. |
Output
JSON
status- The current status of the post upload (e.g., processing, completed, failed).publishId- The identifier of the post upload used to retrieve the status.details- Additional information or metadata about the post status, such as error messages or timestamps.
Dependencies
- TikTok API access with appropriate authentication credentials
Troubleshooting
- Ensure the Publish ID is correctly provided and matches the one returned during the post upload initiation.
- Verify that the TikTok API credentials are valid and have the necessary permissions to access post status information.
- Common errors may include invalid Publish ID, expired tokens, or network connectivity issues. Resolving these typically involves re-authenticating or checking the input values.
Links
- TikTok API Documentation - Post Upload Status - Official documentation for the TikTok API endpoint used to get the status of a post upload.