创建绑定了 Cookie 和请求配置的快手 Fetcher
快手 Cookie
可选
请求配置 (可选)
绑定了 Cookie 的 Fetcher 对象,调用时无需传递 cookie
const fetcher = createBoundKuaishouFetcher('your_cookie')const result = await fetcher.fetchVideoWork({ photoId: '3x123456789' })// 严格模式const strictResult = await fetcher.fetchVideoWork({ photoId: '3x123456789', typeMode: 'strict' }) 复制
const fetcher = createBoundKuaishouFetcher('your_cookie')const result = await fetcher.fetchVideoWork({ photoId: '3x123456789' })// 严格模式const strictResult = await fetcher.fetchVideoWork({ photoId: '3x123456789', typeMode: 'strict' })
创建绑定了 Cookie 和请求配置的快手 Fetcher