docs(tiktok): warn that content_posting_method UPLOAD never publishes - #11
docs(tiktok): warn that content_posting_method UPLOAD never publishes#11giladresisi wants to merge 1 commit into
Conversation
UPLOAD sends the media to the user's TikTok app inbox (SEND_TO_USER_INBOX), where it must be finished manually within 24h or it is discarded. The API still reports the post as successful, so an agent that picks UPLOAD - the natural choice when a user says "upload this video" - silently never posts. PROVIDER_SETTINGS.md listed the enum with no explanation, and it is what an agent following this skill actually reads. Spell out the consequence and name DIRECT_POST as the default. Also stop the integrations:settings example from discarding .output.rules, so provider guidance written upstream reaches skill users. Mirrors gitroomhq/postiz-app#1687 and the parallel gitroomhq/postiz-docs fix. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Contribution-checker quality warning Heuristics that flagged:
If this is a genuine contribution, please add detail to your PR description and tighten the diff scope before reviewers look at it. |
|
Warning Review limit reached
Next review available in: 20 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Why
With
content_posting_method: "UPLOAD", TikTok does not publish the post — it drops the media into the account's TikTok app inbox, where the user must manually finish and publish it within 24 hours or it's discarded. The Postiz API still reports the post as successfully published, so an agent that picksUPLOAD(the natural choice when a user says "upload this video") silently never posts.PROVIDER_SETTINGS.mdlisted the enum with no explanation, and it's what an agent following this skill actually reads.Changes (docs/markdown only)
UPLOADand nameDIRECT_POSTas the default to use.DIRECT_POSTunless the user explicitly asked to finish the post in the TikTok app. Also stop theintegrations:settingsexample from discarding.output.rules, so upstream provider guidance reaches skill users.Related
Note: the media-type axis (which settings apply to video vs. photo posts) is a follow-up PR stacked on this one.
🤖 Generated with Claude Code