max 1 year ago
parent bd3f8090ff
commit 8b0ed2c36f

@ -1,10 +1,10 @@
import * as dotenv from 'dotenv';
dotenv.config();
import pkg from 'express';
const { Express } = pkg;
import { login } from 'masto';
import * as fspkg from 'fs';
const { fs } = fspkg;
const masto = await login({
url: process.env.URL,
@ -18,10 +18,11 @@ const M = await masto.v1.statuses.create ({
visibility: 'public',
});
M.post('statuses', params, (error, data) => {
M.post('statuses', (error, data) => {
if (error) {
console.error(error);
} else {
fs.writeFileSync('data.json', JSON.stringify(data, null, 2));
console.log(data);
}
}

Loading…
Cancel
Save