Mercurial > prosody-modules
annotate mod_pubsub_hub/README.markdown @ 5646:d67980d9e12d
mod_http_oauth2: Apply refresh token ttl to refresh token instead of grant
The intent in 59d5fc50f602 was for refresh tokens to extend the lifetime
of the grant, but the refresh token ttl was applied to the grant and
mod_tokenauth does not change it, leading to the grant expiring
regardless of refresh token usage.
This makes grant lifetimes unlimited, which seems to be standard
practice in the wild.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 11 Sep 2023 10:48:31 +0200 |
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 |