blob: d5d27b97208580ee25d253bdf5f41134cc0beb7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include <matrix.h>
#define SERVER "https://matrix.org"
#define USER_ID "@example:matrix.org"
#define ROOM_ID "!example:matrix.org"
#define USERNAME ""
#define PASSWORD ""
#define DEVICE_NAME ""
int
main(void)
{
MatrixClient client;
MatrixClientInit(&client);
MatrixHttpInit(&client.hc, SERVER);
MatrixClientSetUserId(&client, USER_ID);
MatrixClientLoginPassword(&client,
USERNAME,
PASSWORD,
DEVICE_NAME);
MatrixClientSendEvent(&client,
ROOM_ID,
"m.room.message",
"{\"body\":\"Hello\",\"msgtype\":\"m.text\"}");
MatrixClientDeleteDevice(&client);
MatrixHttpDeinit(&client.hc);
return 0;
}
|