m
This commit is contained in:
parent
bd3f8090ff
commit
8b0ed2c36f
1 changed files with 4 additions and 3 deletions
7
bot.js
7
bot.js
|
@ -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…
Reference in a new issue