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