mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-23 01:35:38 +03:00
24 lines
612 B
JavaScript
24 lines
612 B
JavaScript
|
import fs from 'fs';
|
||
|
|
||
|
const { INSTANCES_SOCIAL_SECRET_TOKEN } = process.env;
|
||
|
|
||
|
const params = new URLSearchParams({
|
||
|
count: 200,
|
||
|
sort_by: 'active_users',
|
||
|
sort_order: 'desc',
|
||
|
});
|
||
|
|
||
|
const url = `https://instances.social/api/1.0/instances/list?${params.toString()}`;
|
||
|
const results = await fetch(url, {
|
||
|
headers: {
|
||
|
Authorization: `Bearer ${INSTANCES_SOCIAL_SECRET_TOKEN}`,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const json = await results.json();
|
||
|
const names = json.instances.map((instance) => instance.name);
|
||
|
|
||
|
// Write to file
|
||
|
const path = './src/data/instances.json';
|
||
|
fs.writeFileSync(path, JSON.stringify(names, null, '\t'), 'utf8');
|