创建绑定了 Cookie 和请求配置的 B站 Fetcher
B站 Cookie
可选
请求配置 (可选)
绑定了 Cookie 的 Fetcher 对象,调用时无需传递 cookie
const fetcher = createBoundBilibiliFetcher('your_cookie')const result = await fetcher.fetchVideoInfo({ bvid: 'BV1xx411c7mD' })// 严格模式const strictResult = await fetcher.fetchVideoInfo({ bvid: 'BV1xx411c7mD', typeMode: 'strict' }) 复制
const fetcher = createBoundBilibiliFetcher('your_cookie')const result = await fetcher.fetchVideoInfo({ bvid: 'BV1xx411c7mD' })// 严格模式const strictResult = await fetcher.fetchVideoInfo({ bvid: 'BV1xx411c7mD', typeMode: 'strict' })
创建绑定了 Cookie 和请求配置的 B站 Fetcher