diff options
| author | Devendra | 2013-12-18 23:49:14 +0530 |
|---|---|---|
| committer | Devendra | 2013-12-18 23:49:14 +0530 |
| commit | 6679589afb60e7e68b2335e81a911d4ec8bacb8a (patch) | |
| tree | 7f822fd5ef95c259979b853514f6b26560fb4fa2 | |
| parent | 10d8be20d269fecc174fe11a4f7f12e231adb675 (diff) | |
| download | pubnub-python-staging-3.5.0.tar.bz2 | |
pam client support for pythonstaging-3.5.0
| -rw-r--r-- | common/PubnubCore.py | 2 | ||||
| -rw-r--r-- | python/Pubnub.py | 2 |
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] |
