aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/PubnubCore.py2
-rw-r--r--python/Pubnub.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/PubnubCore.py b/common/PubnubCore.py
index d7af462..6477413 100644
--- a/common/PubnubCore.py
+++ b/common/PubnubCore.py
@@ -97,7 +97,7 @@ class PubnubCore(PubnubBase):
channel,
'0',
str(timetoken)
- ],"urlparams" : {"uuid" : self.uuid }})
+ ],"urlparams" : {"uuid" : self.uuid, "auth" : self.auth_key}})
messages = response[0]
args['timetoken'] = response[1]
diff --git a/python/Pubnub.py b/python/Pubnub.py
index cd688ad..72b60b5 100644
--- a/python/Pubnub.py
+++ b/python/Pubnub.py
@@ -578,7 +578,7 @@ class PubnubCore(PubnubBase):
channel,
'0',
str(timetoken)
- ],"urlparams" : {"uuid" : self.uuid }})
+ ],"urlparams" : {"uuid" : self.uuid, "auth" : self.auth_key}})
messages = response[0]
args['timetoken'] = response[1]