Mercurial > prosody-wiki
comparison mod_post_msg.wiki @ 153:1b51195895b2
Some useful information. Forgotten page.
author | xdersd |
---|---|
date | Tue, 07 Sep 2010 11:25:42 +0000 |
parents | |
children | 481b89e8007f |
comparison
equal
deleted
inserted
replaced
152:49c54511545a | 153:1b51195895b2 |
---|---|
1 #summary Receives HTTP request, parses it and relays it into XMPP. | |
2 | |
3 = Introduction = | |
4 | |
5 Sometimes it's useful to have different interfaces to access XMPP. | |
6 | |
7 This is example of sending message using HTTP POST to XMPP. For sure we need user auth information. | |
8 | |
9 = Example usage = | |
10 | |
11 * curl http://example.com:5280/msg/user -u me@example.com:mypassword -d "Server@host has just crashed!" | |
12 | |
13 This would send a message to user@example.com from me@example.com | |
14 | |
15 = Details = | |
16 | |
17 By Kim Alvefur <zash@zash.se> | |
18 | |
19 Some code borrowed from mod_webpresence | |
20 | |
21 | |
22 |