kuaishou.ts 398 B

12345678910111213141516171819
  1. const plugin = require('../plugins/kuaishou');
  2. async function run() {
  3. // 搜索歌曲
  4. const res = await plugin.search('七里香', 1,'music');
  5. console.log(res);
  6. if (res.data.length > 0) {
  7. const musicItem = res.data[0];
  8. const sourceResult = await plugin.getMediaSource(musicItem, 'standard');
  9. console.log(sourceResult);
  10. }
  11. }
  12. run();