tiktok-shop-integration

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

TikTok Shop Integration

TikTok Shop 集成方案

Overview

概述

TikTok Shop transforms TikTok from a discovery channel into a direct commerce platform where users purchase without leaving the app — via shoppable video posts, LIVE shopping events, product showcase tabs, and creator affiliate programs. For Shopify and WooCommerce, official TikTok integrations handle catalog sync, order management, and inventory updates automatically. The strategic work is applying to TikTok Seller Center, structuring your affiliate program, and running LIVE shopping events.
TikTok Shop将TikTok从一个内容发现渠道转变为直接电商平台,用户无需离开应用即可完成购买——途径包括可购物短视频、直播带货活动、产品展示标签页以及达人联盟计划。对于Shopify和WooCommerce平台,官方TikTok集成可自动处理产品目录同步、订单管理和库存更新。需要重点推进的策略性工作包括申请入驻TikTok商家后台、搭建专属联盟计划,以及开展直播带货活动。

When to Use This Skill

何时使用该方案

  • When launching TikTok as a native commerce channel (not just a traffic referral)
  • When your products are suited to impulse purchase via short-form video
  • When enabling creators to tag and earn commissions on your products
  • When running LIVE shopping events for product launches or flash sales
  • When needing to sync inventory and orders between TikTok Shop and your primary platform
  • 当你将TikTok作为原生电商渠道(而非仅作为流量引流渠道)时
  • 当你的产品适合通过短视频激发冲动消费时
  • 当你希望让达人可以标记你的产品并赚取佣金时
  • 当你为产品发布或闪购活动开展直播带货时
  • 当你需要在TikTok Shop与主平台之间同步库存和订单时

Core Instructions

核心操作指南

Step 1: Register on TikTok Shop Seller Center

Step 1:注册TikTok Shop商家后台

Before any integration:
  1. Go to
    seller.tiktokshop.com
    and create a seller account
  2. Complete identity verification (government ID + business registration)
  3. Connect your TikTok Business Account to the Seller Center
  4. Wait for seller approval — typically 1–3 business days; some categories require additional documentation (food, supplements, electronics)
Note: TikTok Shop is currently available in the US, UK, Southeast Asia, and select other markets. Availability changes — check TikTok's current supported markets before starting.
在进行任何集成之前:
  1. 访问
    seller.tiktokshop.com
    并创建商家账户
  2. 完成身份验证(需提供政府颁发的身份证件+营业执照)
  3. 将你的TikTok企业账户与商家后台关联
  4. 等待商家审核——通常需要1-3个工作日;部分品类(食品、保健品、电子产品)需要额外提交证明文件
注意: TikTok Shop目前已在美国、英国、东南亚及部分其他市场上线。服务范围会动态调整——开始操作前请确认TikTok当前支持的市场。

Step 2: Connect your platform to TikTok Shop

Step 2:将你的平台与TikTok Shop关联



Shopify

Shopify

  1. Go to Shopify Admin → Sales Channels → + → TikTok
  2. Install TikTok for Shopify and connect your TikTok Seller Center account
  3. Under Catalog Sync, Shopify syncs your product catalog to TikTok Shop automatically
  4. Shopify also syncs TikTok Shop orders back to Shopify Admin so you manage fulfillment in one place
  5. Go to TikTok → Products to review which products were approved and which have issues
  6. Products that fail TikTok's content review (image quality, prohibited categories) appear in TikTok → Products → Rejected with the reason

  1. 进入 Shopify后台 → 销售渠道 → + → TikTok
  2. 安装TikTok for Shopify并关联你的TikTok商家后台账户
  3. 目录同步 板块,Shopify会自动将你的产品目录同步至TikTok Shop
  4. Shopify还会将TikTok Shop的订单同步回Shopify后台,让你可以在统一界面管理履约
  5. 进入 TikTok → 产品 页面,查看已通过审核的产品及存在问题的产品
  6. 未通过TikTok内容审核的产品(如图片质量不达标、属于禁售品类)会显示在 TikTok → 产品 → 已拒绝 板块,并标注拒绝原因

WooCommerce

WooCommerce

  1. Install TikTok for WooCommerce from the WordPress plugin directory
  2. Go to WooCommerce → TikTok → Seller Center and connect your TikTok Seller Center account
  3. The plugin syncs your WooCommerce products to TikTok Shop and pulls TikTok orders back into WooCommerce
  4. Go to WooCommerce → TikTok → Products to monitor sync status and resolve any rejected products

  1. 从WordPress插件市场安装 TikTok for WooCommerce 插件
  2. 进入 WooCommerce → TikTok → 商家后台 并关联你的TikTok商家后台账户
  3. 该插件会将你的WooCommerce产品同步至TikTok Shop,并将TikTok订单拉取至WooCommerce系统
  4. 进入 WooCommerce → TikTok → 产品 页面,监控同步状态并处理被拒绝的产品

BigCommerce

BigCommerce

  1. Go to BigCommerce Admin → Channel Manager → Add a Channel → TikTok
  2. Connect your TikTok Seller Center account
  3. BigCommerce automatically syncs products and inventory to TikTok Shop
  4. TikTok orders appear in BigCommerce → Orders for unified fulfillment management

  1. 进入 BigCommerce后台 → 渠道管理 → 添加渠道 → TikTok
  2. 关联你的TikTok商家后台账户
  3. BigCommerce会自动将产品和库存同步至TikTok Shop
  4. TikTok订单会显示在 BigCommerce → 订单 板块,便于统一管理履约

Custom / Headless

自定义/无头电商平台

Use the TikTok Shop API directly for custom catalog management and order handling:
typescript
const TIKTOK_SHOP_BASE = 'https://open-api.tiktokglobalshop.com';

async function syncProductToTikTokShop(product: Product) {
  // TikTok Shop API requires HMAC-SHA256 request signing
  const timestamp = Math.floor(Date.now() / 1000).toString();
  const body = {
    title: product.name.substring(0, 255),
    description: product.description.replace(/<[^>]*>/g, '').substring(0, 5000),
    category_id: product.tikTokCategoryId, // find IDs in TikTok Seller Center → Products → Categories
    images: product.images.map(img => ({ url: img.url })),
    skus: product.variants.map(v => ({
      sales_attributes: v.options.map(opt => ({ attribute_name: opt.name, value_name: opt.value })),
      stock_infos: [{ available_stock: v.stockQuantity, warehouse_id: process.env.TIKTOK_WAREHOUSE_ID }],
      seller_sku: v.sku,
      original_price: v.price.toFixed(2),
    })),
  };

  return tiktokShopRequest('/api/products', body);
}

// Handle TikTok Shop order webhooks
// POST /webhooks/tiktok-shop
export async function handleTikTokShopWebhook(req: Request, res: Response) {
  const { type, data } = req.body;

  if (type === 'ORDER_STATUS_CHANGE') {
    // Sync TikTok order to your OMS
    await syncTikTokOrder(data.order_id, data.order_status);
  }

  res.json({ code: 0 }); // TikTok requires this exact response format
}
直接使用TikTok Shop API进行自定义目录管理和订单处理:
typescript
const TIKTOK_SHOP_BASE = 'https://open-api.tiktokglobalshop.com';

async function syncProductToTikTokShop(product: Product) {
  // TikTok Shop API要求使用HMAC-SHA256对请求进行签名
  const timestamp = Math.floor(Date.now() / 1000).toString();
  const body = {
    title: product.name.substring(0, 255),
    description: product.description.replace(/<[^>]*>/g, '').substring(0, 5000),
    category_id: product.tikTokCategoryId, // 在TikTok商家后台 → 产品 → 品类中查找ID
    images: product.images.map(img => ({ url: img.url })),
    skus: product.variants.map(v => ({
      sales_attributes: v.options.map(opt => ({ attribute_name: opt.name, value_name: opt.value })),
      stock_infos: [{ available_stock: v.stockQuantity, warehouse_id: process.env.TIKTOK_WAREHOUSE_ID }],
      seller_sku: v.sku,
      original_price: v.price.toFixed(2),
    })),
  };

  return tiktokShopRequest('/api/products', body);
}

// 处理TikTok Shop订单Webhook
// POST /webhooks/tiktok-shop
export async function handleTikTokShopWebhook(req: Request, res: Response) {
  const { type, data } = req.body;

  if (type === 'ORDER_STATUS_CHANGE') {
    // 将TikTok订单同步至你的订单管理系统(OMS)
    await syncTikTokOrder(data.order_id, data.order_status);
  }

  res.json({ code: 0 }); // TikTok要求必须返回此响应格式
}

Step 3: Set up product listings for TikTok Shop

Step 3:优化TikTok Shop产品列表

After catalog sync, optimize each product for TikTok Shop:
Product images:
  • Use square (1:1) or vertical (9:16) product images — landscape images underperform
  • White or clean background for the main product image
  • No text overlays, watermarks, or price callouts on images (TikTok rejects these)
  • Minimum 500×500px; 1000×1000px recommended
Product titles:
  • Include the primary keyword in the first 20 characters
  • TikTok Shop displays titles in search and shopping feeds
  • 255 character maximum
Shipping:
  • Set up a warehouse in TikTok Seller Center → Settings → Logistics
  • Link a TikTok-approved shipping carrier (UPS, USPS, FedEx for US sellers)
  • TikTok buyers expect free shipping — set a free shipping threshold that makes economic sense (e.g., orders over $25)
完成目录同步后,为TikTok Shop优化每个产品的展示:
产品图片:
  • 使用正方形(1:1)或竖版(9:16)产品图片——横版图片表现不佳
  • 主产品图片使用白色或干净的背景
  • 图片上不得有文字叠加、水印或价格标注(TikTok会拒绝此类图片)
  • 最小尺寸500×500px;推荐尺寸1000×1000px
产品标题:
  • 在前20个字符中包含核心关键词
  • TikTok Shop会在搜索和购物信息流中展示标题
  • 最多255个字符
物流设置:
  • TikTok商家后台 → 设置 → 物流 中配置仓库信息
  • 关联TikTok认可的物流承运商(美国卖家可选择UPS、USPS、FedEx)
  • TikTok买家期望免运费——设置符合经济效益的免运费门槛(例如,订单满25美元免运费)

Step 4: Enable the creator affiliate program

Step 4:启用达人联盟计划

TikTok Shop's Open Collaboration model lets any creator discover your products and tag them in content for a commission — no prior relationship needed.
  1. Go to TikTok Seller Center → Affiliate → Open Plan
  2. Set a commission rate per product category (typically 10–20% for ecommerce)
  3. Products with enabled affiliate commissions automatically appear in the TikTok Affiliate Marketplace where creators browse for products to promote
  4. Review affiliate creator applications under Seller Center → Affiliate → Creators
For targeted partnerships:
  1. Go to Seller Center → Affiliate → Targeted Collaboration
  2. Browse creator profiles and send collaboration invites with a custom commission rate
  3. You can provide product samples and set specific posting requirements in the invitation
TikTok Shop的开放合作模式允许任何达人发现你的产品并在内容中标记,赚取佣金——无需预先建立合作关系。
  1. 进入 TikTok商家后台 → 联盟 → 开放计划
  2. 为每个产品品类设置佣金比例(电商品类通常为10-20%)
  3. 启用联盟佣金的产品会自动出现在 TikTok联盟市场,达人可在此浏览并选择推广的产品
  4. 商家后台 → 联盟 → 达人 页面审核达人的合作申请
精准合作方式:
  1. 进入 商家后台 → 联盟 → 定向合作
  2. 浏览达人资料并发送合作邀请,可自定义佣金比例
  3. 你可以在邀请中提供产品样品并设置具体的发布要求

Step 5: Run a LIVE Shopping event

Step 5:开展直播带货活动

LIVE Shopping events drive high-urgency sales with real-time product featuring:
Before going live:
  1. In TikTok Seller Center, go to Products and ensure all products you plan to feature are "Active" status (product review takes 24–48 hours)
  2. Go to TikTok LIVE Studio (download the app) or use the TikTok mobile app
  3. Under Shopping, select the products to feature during the LIVE
  4. Promote the LIVE 24–48 hours in advance via regular posts and Stories
During the LIVE:
  1. Start the LIVE from TikTok app or LIVE Studio
  2. Pin featured products using the shopping cart icon — viewers tap the pinned card to add to cart
  3. Change the featured product in real time as you demo different items
  4. Respond to comments about pricing, sizing, and availability to drive urgency
Best times for LIVE Shopping events: Tuesday, Wednesday, or Thursday evenings (7–9pm EST for US audience). Consistent scheduling builds a returning audience.
直播带货活动通过实时产品展示创造高紧迫感,推动销量增长:
直播前准备:
  1. 在TikTok商家后台的 产品 板块,确保所有计划展示的产品处于「活跃」状态(产品审核需24-48小时)
  2. 下载并打开 TikTok LIVE Studio 应用,或使用TikTok移动端应用
  3. 购物 板块选择直播中要展示的产品
  4. 通过常规帖子和故事在直播前24-48小时进行预热推广
直播期间操作:
  1. 通过TikTok应用或LIVE Studio开启直播
  2. 使用购物车图标固定要展示的产品——观众点击固定卡片即可加入购物车
  3. 实时切换展示的产品,配合不同产品的演示
  4. 回复关于价格、尺寸和库存的评论,提升购买紧迫感
直播带货黄金时段: 周二、周三或周四晚上(美国东部时间7-9点针对美国受众)。固定的直播时间能培养回头客。

Step 6: Manage TikTok Shop orders

Step 6:管理TikTok Shop订单

TikTok requires fulfillment within 2 business days of order confirmation. Late shipments damage your seller rating.
Fulfillment process:
  1. TikTok Shop orders appear in your platform admin (Shopify/WooCommerce) automatically if using the native integration
  2. Print shipping labels from your platform admin — TikTok accepts tracking numbers from all major carriers
  3. Enter the tracking number in TikTok Seller Center → Orders within 2 days
  4. TikTok automatically updates the buyer on shipping status
Returns:
  • Accept returns within 30 days of delivery (TikTok's default return window)
  • Configure return logistics in Seller Center → Settings → Returns
TikTok要求在订单确认后的2个工作日内完成履约。延迟发货会损害你的商家评分。
履约流程:
  1. 若使用原生集成,TikTok Shop订单会自动同步至你的平台后台(Shopify/WooCommerce)
  2. 从平台后台打印物流标签——TikTok接受所有主流承运商的追踪单号
  3. 在2天内将追踪单号录入 TikTok商家后台 → 订单 板块
  4. TikTok会自动向买家更新物流状态
退货处理:
  • 接受发货后30天内的退货(TikTok默认退货窗口)
  • 商家后台 → 设置 → 退货 中配置退货物流规则

Best Practices

最佳实践

  • Keep inventory in sync within 5 minutes — overselling on TikTok damages your seller rating and can result in account suspension; use your platform's native TikTok integration for real-time sync
  • Use Open Collaboration for discovery — set a 10–15% commission rate on all products to attract micro-creators who discover your brand organically without outreach
  • Include dedicated TikTok Shop images — square or 9:16 product images outperform landscape images; prepare TikTok-specific creative assets separate from your Shopify product images
  • Run LIVE events consistently — 2× per week builds a returning audience; ad-hoc live events get low attendance
  • Monitor affiliate content for brand safety — creators in Open Collaboration post without prior approval; review tagged content regularly
  • 确保库存5分钟内同步——TikTok上超卖会损害商家评分,甚至导致账户暂停;使用平台原生TikTok集成实现实时同步
  • 利用开放合作扩大品牌曝光——为所有产品设置10-15%的佣金比例,吸引无需主动联系即可自发发现品牌的腰部达人
  • 使用专属TikTok Shop图片——正方形或9:16的产品图片表现优于横版图片;准备与Shopify产品图片分开的TikTok专属创意素材
  • 定期开展直播活动——每周2次直播能培养回头客;临时直播的参与度较低
  • 监控达人内容的品牌安全性——开放合作中的达人无需预先审核即可发布内容;定期检查标记的内容

Common Pitfalls

常见问题及解决方案

ProblemSolution
Products stuck "Under Review"Ensure product images are on white/clean backgrounds with no text overlays; prohibited categories (alcohol, certain supplements) require special approval
TikTok orders not appearing in ShopifyDisconnect and reconnect the TikTok for Shopify channel; check that Seller Center is linked to the correct TikTok Business account
Affiliate creators posting incorrect pricesAny price changes require creator content to be re-tagged; notify active affiliates before changing prices
LIVE Shopping products not showing on streamProducts must be "Active" status before going LIVE; review takes 24–48 hours, so activate products in advance
High return rateTikTok buyers expect products to match the video exactly; avoid over-editing product images and ensure LIVE demos are accurate
问题解决方案
产品一直处于「审核中」状态确保产品图片为白色/干净背景,无文字叠加;禁售品类(酒精、部分保健品)需要特殊审批
TikTok订单未同步至Shopify断开并重新连接TikTok for Shopify渠道;检查商家后台是否关联了正确的TikTok企业账户
达人发布的内容中标注错误价格任何价格变动都需要达人重新标记内容;在调整价格前通知活跃的合作达人
直播带货时产品未在直播间显示产品必须在直播前处于「活跃」状态;审核需要24-48小时,因此需提前激活产品
退货率过高TikTok买家期望产品与视频展示完全一致;避免过度修图,确保直播演示真实准确

Related Skills

相关方案

  • @tiktok-ads-integration
  • @ugc-campaign-management
  • @influencer-marketplace-integration
  • @social-commerce
  • @video-commerce-integration
  • @tiktok-ads-integration
  • @ugc-campaign-management
  • @influencer-marketplace-integration
  • @social-commerce
  • @video-commerce-integration