15 lines
613 B
JavaScript
15 lines
613 B
JavaScript
import got from 'got';
|
|
const res = await got.post('https://api.modrinth.com/v2/version_files', {
|
|
headers: {
|
|
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
|
|
},
|
|
json: {
|
|
hashes: [
|
|
"ea0f38408102e4d2efd53c2cc11b88b711996b48d8922f76ea6abf731219c5bd1efe39ddf9cce77c54d49a62ff10fb685c00d2e4c524ab99d20f6296677ab2c4",
|
|
"925a5c4899affa4098d997dfa4a4cb52c636d539e94bc489d1fa034218cb96819a70eb8b01647a39316a59fcfe223c1a8c05ed2e2ae5f4c1e75fa48f6af1c961"
|
|
],
|
|
algorithm: 'sha512',
|
|
}
|
|
}).json()
|
|
|
|
console.log(res) |