Skip to content

Commit 9117149

Browse files
committed
fix 2.7.9 test
1 parent bddefbe commit 9117149

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

python/README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ At a minimum a VAPID claim set should look like:
1717

1818
::
1919

20-
{"sub":"mailto:[email protected]","aud":"https://PushServerURL","exp":"ExpirationTimestamp"}
20+
{"sub":"mailto:[email protected]","aud":"https://PushServer","exp":"ExpirationTimestamp"}
2121

2222
A few notes:
2323

@@ -27,14 +27,14 @@ email that will be used to contact you (for instance). This can be a
2727
general delivery address like "``mailto:[email protected]``"
2828
or a specific address like "``mailto:[email protected]``".
2929

30-
***aud*** is the audience for the VAPID. This it the host path you use
31-
to send subscription endpoints and generally coincides with the
30+
***aud*** is the audience for the VAPID. This is the scheme and host you
31+
use to send subscription endpoints and generally coincides with the
3232
``endpoint`` specified in the Subscription Info block.
3333

3434
As example, if a WebPush subscription info contains:
3535
``{"endpoint": "https://push.example.com:8012/v1/push/...", ...}``
3636

37-
then the ``aud`` would be "``https://push.example.com:8012/``"
37+
then the ``aud`` would be "``https://push.example.com:8012``"
3838

3939
While some Push Services consider this an optional field, others may be
4040
stricter.

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from setuptools import setup, find_packages
55

6-
__version__ = "1.2.0"
6+
__version__ = "1.2.1"
77

88

99
def read_from(file):

0 commit comments

Comments
 (0)