Create terabox.js
Browse files- lib/@randydev/terabox.js +24 -0
lib/@randydev/terabox.js
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from 'axios';
|
2 |
+
import { trbtoken, trbrul } from '../config.js';
|
3 |
+
|
4 |
+
async function TeraboxDownloader(url) {
|
5 |
+
const options = {
|
6 |
+
method: 'POST',
|
7 |
+
url: `${trbrul}/fetch`,
|
8 |
+
headers: {
|
9 |
+
'x-rapidapi-key': trdl,
|
10 |
+
'x-rapidapi-host': trbrul,
|
11 |
+
'Content-Type': 'application/json'
|
12 |
+
},
|
13 |
+
data: { url: url }
|
14 |
+
};
|
15 |
+
try {
|
16 |
+
const response = await axios.request(options);
|
17 |
+
console.log(response.data);
|
18 |
+
} catch (error) {
|
19 |
+
console.error(error);
|
20 |
+
return null;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
|
24 |
+
export { TeraboxDownloader };
|