// 旧用法 (已废弃,会抛出错误)
const data = await getKuaishouData('videoWork', { photoId: '123' }, cookie)
// 新用法
import { kuaishouFetcher } from '@ikenxuan/amagi'
const data = await kuaishouFetcher.fetchVideoWork({ photoId: '123' }, cookie)
// 或使用客户端实例
const client = createAmagiClient({ cookies: { kuaishou: cookie } })
const data = await client.kuaishou.fetcher.fetchVideoWork({ photoId: '123' })
获取快手数据