NAiOS IconNAiOS Logo
Volver al catálogo

Tiktok

tiktok

TikTok short-form video platform + creation tools + social sharing

Acciones
9
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

Acciones disponibles (9)

Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.

Fetch publish statusTIKTOK_FETCH_PUBLISH_STATUSAcción

Fetch current publish/upload status for a given publish id.

Parámetros de entrada

  • publish_idstringObligatorio

    Publish ID to check status for

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get user basic infoTIKTOK_GET_USER_BASIC_INFOAcción

Fetches basic tiktok user info for the authenticated user.

Parámetros de entrada

  • fieldsstring[]

    Fields to request for basic user info (comma-joined). Typical fields: open_id, display_name, avatar_url, profile_deep_link

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get user profile infoTIKTOK_GET_USER_PROFILEAcción

Fetches extended tiktok profile info for the authenticated user.

Parámetros de entrada

  • fieldsstring[]

    Fields to request for profile info; example fields include bio_description, follower_count, following_count, video_count, likes_count

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get user statsTIKTOK_GET_USER_STATSAcción

Fetches tiktok user stats for the authenticated user.

Parámetros de entrada

  • fieldsstring[]

    Fields to request for user stats; example fields include follower_count, following_count, likes_count, video_count

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List videosTIKTOK_LIST_VIDEOSAcción

Lists videos for the authenticated user (or specified creator).

Parámetros de entrada

  • cursorstring

    Pagination cursor returned by previous call.

  • max_countinteger

    Maximum number of videos to retrieve.

  • creator_idstring

    Optional creator open_id to list videos for; omit for current user.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Post photoTIKTOK_POST_PHOTOAcción

Create a photo post via content posting api (direct post or media upload). reference: https://developers.tiktok.com/doc/content-posting-api-reference-photo-post?enter method=left navigation

Parámetros de entrada

  • titlestring

    Post title (<= 90 UTF-16 runes)

  • post_modestringenum

    Use DIRECT_POST to publish immediately (requires video.publish), or MEDIA_UPLOAD to send to inbox for editing (requires video.upload)

    DIRECT_POSTMEDIA_UPLOAD
  • descriptionstring

    Post description (<= 4000 UTF-16 runes)

  • photo_imagesstring[]Obligatorio

    Up to 35 publicly accessible image URLs

  • privacy_levelstring

    Required for DIRECT_POST. Must match options from creator_info/query.

  • auto_add_musicboolean

    DIRECT_POST only. Auto add recommended music.

  • disable_commentboolean

    DIRECT_POST only. Disallow comments if true.

  • photo_cover_indexintegerObligatorio

    Zero-based index of cover image among photo_images

  • brand_content_toggleboolean

    DIRECT_POST only. True if content is a paid partnership to promote a third-party business.

  • brand_organic_toggleboolean

    DIRECT_POST only. True if content promotes the creator's own business.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Publish videoTIKTOK_PUBLISH_VIDEOAcción

Finalize and publish a video from the inbox using its publish id.

Parámetros de entrada

  • captionstring

    Optional caption/title for the post

  • publish_idstringObligatorio

    Publish ID returned by init upload

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Upload videoTIKTOK_UPLOAD_VIDEOAcción

Uploads a video to tiktok via the content posting api (init + single-part upload). this action initializes an upload session to obtain a presigned upload url, then uploads the entire file with a single put request. use a subsequent action to publish the post.

Parámetros de entrada

  • captionstring

    Optional caption/title used when publish=true

  • publishboolean

    If true, attempts to publish after upload using the returned publish_id.

  • file_to_uploadobjectObligatorio

    Video file to upload to TikTok using Content Posting API presigned URL.

  • chunk_size_bytesinteger

    Chunk size hint sent during init (bytes). Currently uploaded in a single PUT.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Upload videos (batch)TIKTOK_UPLOAD_VIDEOSAcción

Uploads multiple videos to tiktok concurrently (init + single-part upload per file).

Parámetros de entrada

  • captionstring

    Optional caption/title used when publish=true

  • publishboolean

    If true, attempts to publish after each upload using the returned publish_id.

  • max_workersinteger

    Maximum number of parallel uploads

  • files_to_uploadobject[]

    List of videos to upload to TikTok in parallel

  • chunk_size_bytesinteger

    Chunk size hint to use during each init step

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not