Mercurial > prosody-modules
annotate mod_pubsub_hub/README.markdown @ 5243:d5dc8edb2695
mod_http_oauth2: Use more compact IDs
UUIDs are nice but so verbose!
The reduction in entropy for the nonce should be fine since the
timestamp is also counts towards this, and it changes every second
(modulo clock shenanigans), so the chances of someone managing to get
the same client_secret by registering with the same information at the
same time as another entity should be negligible.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 11 Mar 2023 22:46:27 +0100 |
parents | f933e3909795 |
children |
rev | line source |
---|---|
1803 | 1 --- |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
2 summary: PubSubHubbub hub |
1803 | 3 ... |
4 | |
5 Introduction | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
6 ============ |
1803 | 7 |
8 This module implements a | |
2330
f933e3909795
mod_pubsub_hub/README: Update specification link
Kim Alvefur <zash@zash.se>
parents:
1986
diff
changeset
|
9 [PubSubHubbub](http://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.3.html) |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
10 (PuSH) hub, allowing PuSH clients to subscribe to local XMPP |
1803 | 11 [Publish-Subscribe](http://xmpp.org/extensions/xep-0060.html) nodes |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
12 stored by [mod\_pubsub](http://prosody.im/doc/modules/mod_pubsub) and |
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
13 receive real time updates to feeds. |
1803 | 14 |
15 Configuration | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
16 ============= |
1803 | 17 |
18 Component "pubsub.example.com" "pubsub" | |
19 | |
20 modules_enabled = { | |
21 "pubsub_hub"; | |
22 } | |
23 | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
24 The hub is then available on `http://pubsub.example.com:5280/hub`. |
1803 | 25 |
26 Compatibility | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
27 ============= |
1803 | 28 |
29 ------- -------------- | |
30 trunk Works | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
31 0.10 Should work |
1803 | 32 0.9 Works |
33 0.8 Doesn't work | |
34 ------- -------------- | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
35 |
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
36 |