ligh7hau5/commands/fediverse/beg.js

16 lines
445 B
JavaScript
Raw Normal View History

exports.runQuery = function (roomId, event) {
2020-05-16 20:31:10 +03:00
axios({
method: 'POST',
url: `${config.fediverse.domain}/api/v1/statuses`,
headers: { Authorization: `Bearer ${fediverse.auth.access_token}` },
data: { status: '@10grans@fedi.cc beg' },
2020-05-16 20:31:10 +03:00
})
.then(() => {
matrix.utils.addReact(event, '✅');
})
2020-05-16 20:31:10 +03:00
.catch((e) => {
matrix.utils.addReact(event, '❌');
matrix.utils.sendError(event, roomId, e);
2020-05-16 20:31:10 +03:00
});
};