const axios = require('axios'); exports.runQuery = function (matrixClient, room, userInput, registrar) { axios({ method: 'POST', url: `${registrar.config.fediverse.domain}/api/v1/statuses`, headers: { Authorization: `Bearer ${registrar.fediverse_auth.access_token}` }, data: { status: userInput, content_type: `text/markdown` }, }).then((response) => { matrixClient.sendHtmlNotice(room.roomId, '', `
${response.data.content}
(id: ${response.data.id})

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