ymx-douyin
    正在准备搜索索引...

    接口 ShareData

    分享参数

    imagesvideos 必传且仅可传其一(当前仅支持单图或单视频); 分享到编辑页需要 aweme.share 权限,拉起拍摄页需要 aweme.capture 权限。

    interface ShareData {
        hashtags?: string[];
        images?: string[];
        shareTo?: string;
        state?: string;
        title?: string;
        videos?: string[];
    }
    索引

    属性

    hashtags?: string[]

    话题组,展示在发布页,用户可自行删除

    images?: string[]

    图片链接组(仅支持单图,与 videos 二选一)

    shareTo?: string

    分享到哪里

    • edit 编辑页
    • record 拍摄页
    edit
    
    state?: string

    任意字符,分享成功时原样返回,可为 share_id 以便查询发布结果

    title?: string

    标题(图片分享时为图文正文)

    videos?: string[]

    视频链接组(仅支持单视频,与 images 二选一)