{
  "schemaVersion": "1.0",
  "item": {
    "slug": "publora-tiktok",
    "name": "Publora — TikTok",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sergebulaev/publora-tiktok",
    "canonicalUrl": "https://clawhub.ai/sergebulaev/publora-tiktok",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/publora-tiktok",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=publora-tiktok",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/publora-tiktok"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/publora-tiktok",
    "agentPageUrl": "https://openagent3.xyz/skills/publora-tiktok/agent",
    "manifestUrl": "https://openagent3.xyz/skills/publora-tiktok/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/publora-tiktok/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Publora — TikTok",
        "body": "TikTok platform skill for the Publora API. For auth, core scheduling, media upload, and workspace/webhook docs, see the publora core skill.\n\nBase URL: https://api.publora.com/api/v1\nHeader: x-publora-key: sk_YOUR_KEY\nPlatform ID format: tiktok-{userId}"
      },
      {
        "title": "Platform Limits (API)",
        "body": "⚠️ TikTok API is stricter than native app for captions and duration.\n\nPropertyAPI LimitNative AppCaption2,200 characters4,000 charactersVideo duration10 min60 minVideo size4 GB—Video formatMP4, MOV, WebM—Images❌ Video only—Text only❌ Video required—Daily posts15–20 posts/day—Rate limit2 videos/minute—\n\nCommon errors:\n\nspam_risk_too_many_posts — daily limit reached, wait 24h\nduration_check_failed — video must be 3s–10min\nunaudited_client_can_only_post_to_private_accounts — app needs TikTok audit\n\n⚠️ If your TikTok app is not audited by TikTok, all posts will be private by default."
      },
      {
        "title": "Upload a TikTok Video",
        "body": "TikTok requires video. Use the 3-step upload workflow:\n\n// Step 1: Create post (draft without scheduledTime, or scheduled)\nconst post = await fetch('https://api.publora.com/api/v1/create-post', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },\n  body: JSON.stringify({\n    content: 'Your TikTok caption here #trending',\n    platforms: ['tiktok-123456789'],\n    scheduledTime: '2026-03-20T18:00:00.000Z'\n  })\n}).then(r => r.json());\n\n// Step 2: Get upload URL\nconst upload = await fetch('https://api.publora.com/api/v1/get-upload-url', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },\n  body: JSON.stringify({\n    postGroupId: post.postGroupId,\n    fileName: 'video.mp4',\n    contentType: 'video/mp4',\n    type: 'video'\n  })\n}).then(r => r.json());\n\n// Step 3: Upload video to S3\nawait fetch(upload.uploadUrl, {\n  method: 'PUT',\n  headers: { 'Content-Type': 'video/mp4' },\n  body: videoFileBytes\n});"
      },
      {
        "title": "Python Example",
        "body": "import requests\n\nHEADERS = { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' }\n\n# Step 1: Create post\npost = requests.post('https://api.publora.com/api/v1/create-post', headers=HEADERS, json={\n    'content': 'Your TikTok caption #viral',\n    'platforms': ['tiktok-123456789'],\n    'scheduledTime': '2026-03-20T18:00:00.000Z'\n}).json()\n\n# Step 2: Get upload URL\nupload = requests.post('https://api.publora.com/api/v1/get-upload-url', headers=HEADERS, json={\n    'postGroupId': post['postGroupId'],\n    'fileName': 'video.mp4',\n    'contentType': 'video/mp4',\n    'type': 'video'\n}).json()\n\n# Step 3: Upload\nwith open('video.mp4', 'rb') as f:\n    requests.put(upload['uploadUrl'], headers={'Content-Type': 'video/mp4'}, data=f)"
      },
      {
        "title": "Platform Quirks",
        "body": "Video only — TikTok does not support images or text-only posts via API\nMinimum duration: 3 seconds; maximum via API: 10 minutes\nUnaudited apps post privately — videos will be set to private if the Publora TikTok app hasn't passed TikTok's audit\nCaption limit is 2,200 via API (not 4,000 like native) — keep captions concise\nDaily limit: 15–20 posts/day enforced by TikTok"
      }
    ],
    "body": "Publora — TikTok\n\nTikTok platform skill for the Publora API. For auth, core scheduling, media upload, and workspace/webhook docs, see the publora core skill.\n\nBase URL: https://api.publora.com/api/v1\nHeader: x-publora-key: sk_YOUR_KEY\nPlatform ID format: tiktok-{userId}\n\nPlatform Limits (API)\n\n⚠️ TikTok API is stricter than native app for captions and duration.\n\nProperty\tAPI Limit\tNative App\nCaption\t2,200 characters\t4,000 characters\nVideo duration\t10 min\t60 min\nVideo size\t4 GB\t—\nVideo format\tMP4, MOV, WebM\t—\nImages\t❌ Video only\t—\nText only\t❌ Video required\t—\nDaily posts\t15–20 posts/day\t—\nRate limit\t2 videos/minute\t—\n\nCommon errors:\n\nspam_risk_too_many_posts — daily limit reached, wait 24h\nduration_check_failed — video must be 3s–10min\nunaudited_client_can_only_post_to_private_accounts — app needs TikTok audit\n\n⚠️ If your TikTok app is not audited by TikTok, all posts will be private by default.\n\nUpload a TikTok Video\n\nTikTok requires video. Use the 3-step upload workflow:\n\n// Step 1: Create post (draft without scheduledTime, or scheduled)\nconst post = await fetch('https://api.publora.com/api/v1/create-post', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },\n  body: JSON.stringify({\n    content: 'Your TikTok caption here #trending',\n    platforms: ['tiktok-123456789'],\n    scheduledTime: '2026-03-20T18:00:00.000Z'\n  })\n}).then(r => r.json());\n\n// Step 2: Get upload URL\nconst upload = await fetch('https://api.publora.com/api/v1/get-upload-url', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },\n  body: JSON.stringify({\n    postGroupId: post.postGroupId,\n    fileName: 'video.mp4',\n    contentType: 'video/mp4',\n    type: 'video'\n  })\n}).then(r => r.json());\n\n// Step 3: Upload video to S3\nawait fetch(upload.uploadUrl, {\n  method: 'PUT',\n  headers: { 'Content-Type': 'video/mp4' },\n  body: videoFileBytes\n});\n\nPython Example\nimport requests\n\nHEADERS = { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' }\n\n# Step 1: Create post\npost = requests.post('https://api.publora.com/api/v1/create-post', headers=HEADERS, json={\n    'content': 'Your TikTok caption #viral',\n    'platforms': ['tiktok-123456789'],\n    'scheduledTime': '2026-03-20T18:00:00.000Z'\n}).json()\n\n# Step 2: Get upload URL\nupload = requests.post('https://api.publora.com/api/v1/get-upload-url', headers=HEADERS, json={\n    'postGroupId': post['postGroupId'],\n    'fileName': 'video.mp4',\n    'contentType': 'video/mp4',\n    'type': 'video'\n}).json()\n\n# Step 3: Upload\nwith open('video.mp4', 'rb') as f:\n    requests.put(upload['uploadUrl'], headers={'Content-Type': 'video/mp4'}, data=f)\n\nPlatform Quirks\nVideo only — TikTok does not support images or text-only posts via API\nMinimum duration: 3 seconds; maximum via API: 10 minutes\nUnaudited apps post privately — videos will be set to private if the Publora TikTok app hasn't passed TikTok's audit\nCaption limit is 2,200 via API (not 4,000 like native) — keep captions concise\nDaily limit: 15–20 posts/day enforced by TikTok"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sergebulaev/publora-tiktok",
    "publisherUrl": "https://clawhub.ai/sergebulaev/publora-tiktok",
    "owner": "sergebulaev",
    "version": "2.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/publora-tiktok",
    "downloadUrl": "https://openagent3.xyz/downloads/publora-tiktok",
    "agentUrl": "https://openagent3.xyz/skills/publora-tiktok/agent",
    "manifestUrl": "https://openagent3.xyz/skills/publora-tiktok/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/publora-tiktok/agent.md"
  }
}