Last active
February 2, 2024 19:32
-
-
Save travnewmatic/769cd9532504e0f85983d69acd4a7d29 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Adjust homserver, room, and accesstoken to your particular setup | |
# Script is expecting data to be piped in on STDIN | |
# Example: | |
# echo "some text" | sendmatrix | |
msgtype=m.text | |
homeserver=<homeserver> | |
room=<room id> | |
accesstoken=<access token> | |
curl -XPOST -d "$( jq -Rsc --arg msgtype "$msgtype" '{$msgtype, body:.}')" "https://$homeserver/_matrix/client/r0/rooms/$room/send/m.room.message?access_token=$accesstoken" |
how can we quote a message from other user? basically how to reply to a message?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maybe see here:
https://matrix.org/docs/api/client-server/#!/Media/uploadContent