TikTok V3

This commit is contained in:
2026-07-09 18:18:17 +02:00
parent cc2522f7a4
commit 1a39593b29
3 changed files with 26 additions and 11 deletions

View File

@@ -56,12 +56,19 @@
- Do not treat a generic approval like "Go" as permission for automatic/direct TikTok publishing. - Do not treat a generic approval like "Go" as permission for automatic/direct TikTok publishing.
## TikTok Analytics (Display API, read-only) ## TikTok Analytics (Display API, read-only)
- Both apps request the scopes `user.info.basic,user.info.stats,video.list,video.upload,video.publish`. - The requested scopes MUST exactly match what each app has approved in the TikTok Developer Portal — requesting an unapproved scope aborts the whole OAuth login with a generic "scope" error.
- Approved scopes per app (as of 2026-07-09):
- QRMaster: `user.info.basic, user.info.profile, user.info.stats, video.list, video.upload` (NO `video.publish` — upload/draft only).
- GreenLens Pro: `user.info.basic, video.upload, video.publish` (NO analytics scopes yet — a portal revision adding `user.info.stats` + `video.list` is required before GreenLens analytics works).
- Admin-key-protected live analytics endpoints (no data is stored, every call reads fresh from TikTok): - Admin-key-protected live analytics endpoints (no data is stored, every call reads fresh from TikTok):
- QRMaster: `GET /api/tiktok/analytics?key=<TIKTOK_ADMIN_KEY>&max_videos=50` - QRMaster: `GET /api/tiktok/analytics?key=<TIKTOK_ADMIN_KEY>&max_videos=50`
- GreenLens: `GET /api/tiktok/analytics` (guarded by the plant import admin key) - GreenLens: `GET /api/tiktok/analytics` (guarded by the plant import admin key)
- Response: account stats (followers, total likes, video count) plus per-video views/likes/comments/shares with computed `engagement_rate`, `posted_weekday_utc` and `posted_hour_utc`, and a summary block (totals, average/median views). - Response: account stats (followers, total likes, video count) plus per-video views/likes/comments/shares with computed `engagement_rate`, `posted_weekday_utc` and `posted_hour_utc`, and a summary block (totals, average/median views).
- The new scopes must be enabled for the app in the TikTok Developer Portal, and accounts connected before the scope change must re-authorize via `/api/tiktok/connect` otherwise TikTok returns a scope error. - After any scope change the account must re-authorize via `/api/tiktok/connect`, otherwise the stored token keeps the old permissions.
## TikTok Photo/Carousel Upload Notes
- Photo posts use `POST /v2/post/publish/content/init/` with `post_mode: MEDIA_UPLOAD` (draft in the creator's inbox, needs only `video.upload`). Valid post modes are only `MEDIA_UPLOAD` and `DIRECT_POST``DRAFT` is not a valid value.
- Photos are delivered via `source_info.photo_images` as public URLs (`PULL_FROM_URL`). TikTok only pulls from **verified domains** — verify the hosting domain (e.g. `greenlenspro.com` for MinIO storage URLs) under Content Posting API → "Verify domains" in the Developer Portal, otherwise the upload fails.
## Refresh Behavior ## Refresh Behavior
- Meta user/page tokens werden automatisch refreshed durch `python C:\Users\timo\Documents\meta_token_refresh.py`. - Meta user/page tokens werden automatisch refreshed durch `python C:\Users\timo\Documents\meta_token_refresh.py`.

View File

@@ -24,7 +24,7 @@ export async function GET(request: NextRequest) {
const authUrl = new URL('https://www.tiktok.com/v2/auth/authorize/'); const authUrl = new URL('https://www.tiktok.com/v2/auth/authorize/');
authUrl.searchParams.set('client_key', clientKey); authUrl.searchParams.set('client_key', clientKey);
authUrl.searchParams.set('scope', 'user.info.basic,user.info.stats,video.list,video.upload,video.publish'); authUrl.searchParams.set('scope', 'user.info.basic,user.info.profile,user.info.stats,video.list,video.upload');
authUrl.searchParams.set('response_type', 'code'); authUrl.searchParams.set('response_type', 'code');
authUrl.searchParams.set('redirect_uri', redirectUri); authUrl.searchParams.set('redirect_uri', redirectUri);
authUrl.searchParams.set('state', oauthState); authUrl.searchParams.set('state', oauthState);

View File

@@ -92,16 +92,24 @@ export async function POST(request: NextRequest) {
); );
} }
const title = typeof json?.title === 'string' ? json.title.trim() : '';
const description = typeof json?.description === 'string' ? json.description.trim() : '';
const initBody = { const initBody = {
media_type: 'PHOTO', media_type: 'PHOTO',
// MEDIA_UPLOAD = draft in the creator's TikTok inbox (posting
// policy is upload/draft only) and only needs the video.upload
// scope — QRMaster has no video.publish.
post_mode: 'MEDIA_UPLOAD',
post_info: {
...(title ? { title } : {}),
...(description ? { description } : {}),
},
source_info: {
source: 'PULL_FROM_URL',
photo_cover_index: 0, photo_cover_index: 0,
file_paths: photoUrls, photo_images: photoUrls,
file_extensions: photoUrls.map((url) => { },
const fileName = String(new URL(url).pathname).split('/').pop() || 'photo.jpg';
const extension = fileName.split('.').pop() || 'jpg';
return extension.startsWith('.') ? extension.slice(1) : extension;
}),
post_mode: 'DIRECT_POST',
}; };
const initResult = await tiktokApi( const initResult = await tiktokApi(