1234567891011121314151617181920212223 |
- detail(`https://www.youtube.com/watch?v=IXuhdnB2dAY`, 'WEB')
- .then(res => {
- console.log(res);
- })
- .catch(e => {
- console.log(e);
- })
- // search("trump gets mercilessly booed at speech", null, "WEB")
- // .then(res => {
- // console.log(res);
- // search("trump gets mercilessly booed at speech", res["data"]["next"], "WEB")
- // .then(res => {
- // console.log(res);
- // })
- // .catch(e => {
- // console.log(e);
- // })
- // })
- // .catch(e => {
- // console.log(e);
- // })
|