exports.runQuery = function (matrixClient, room) { axios({ method: 'POST', url: `${config.fediverse.domain}/api/v1/statuses`, headers: { Authorization: `Bearer ${fediverse_auth.access_token}` }, data: { status: `@10grans@fedi.cc beg` }, }).then((response) => { matrixClient.sendHtmlNotice(room.roomId, '', `
You have begged for 10grans.
(id: ${response.data.id})

`); }) .catch((e) => { matrixClient.sendHtmlNotice(room.roomId, '', `${e}`); }); };