Mercurial > prosody-wiki
annotate mod_post_msg.wiki @ 514:9427318ae72d default tip
added page for mod_delegation
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 07 May 2015 23:31:20 +0200 |
parents | 528721aaea46 |
children |
rev | line source |
---|---|
154 | 1 #summary Receives HTTP POST request, parses it and relays it into XMPP. |
153 | 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 | |
366
efb2f5f8317c
mod_post_msg.wiki: Add Content-Type header to example
Kim Alvefur <zash@zash.se>
parents:
154
diff
changeset
|
11 * curl http://example.com:5280/msg/user -u me@example.com:mypassword -H "Content-Type: text/plain" -d "Server@host has just crashed!" |
153 | 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 | |
454
528721aaea46
a bunch of pages: strip trailing whitespace
Kim Alvefur <zash@zash.se>
parents:
366
diff
changeset
|
21 |