You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hk/SrcJyAliShare.js

12 lines
368 B

function aliShare() {
let share_id = rurl.split('&sl=')[1].split('&')[0];
let file_id = rurl.split('&f=')[1].split('&')[0];
let alitoken = alistconfig.alitoken;
let play = getAliUrl(share_id, file_id, alitoken);
if (play.urls) {
if (subtitle) {
play['subtitle'] = subtitle;
}
return JSON.stringify(play);
}
}