From 53a515fccd3c706e8a63e8e6d2adea872551109b Mon Sep 17 00:00:00 2001 From: Kyle Rector Date: Fri, 19 Feb 2016 08:52:59 -0500 Subject: [PATCH 1/2] Updating to work with current Harmony Hub --- harmony/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harmony/auth.py b/harmony/auth.py index 89ee912..14310aa 100644 --- a/harmony/auth.py +++ b/harmony/auth.py @@ -67,7 +67,7 @@ def __init__(self, token): 'feature_mechanisms': {'unencrypted_plain': True}, } super(SwapAuthToken, self).__init__( - 'guest@x.com', 'guest', plugin_config=plugin_config) + 'guest@x.com/gatorade', 'guest', plugin_config=plugin_config) self.token = token self.uuid = None From 9c68c34a311cb0c9f51690376bc481729ca4320b Mon Sep 17 00:00:00 2001 From: Kyle Rector Date: Fri, 19 Feb 2016 08:53:42 -0500 Subject: [PATCH 2/2] Updating to work with current Harmony Hub --- harmony/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harmony/client.py b/harmony/client.py index 9da45ba..803a3ac 100644 --- a/harmony/client.py +++ b/harmony/client.py @@ -15,7 +15,7 @@ class HarmonyClient(sleekxmpp.ClientXMPP): """An XMPP client for connecting to the Logitech Harmony.""" def __init__(self, auth_token): - user = '%s@x.com' % auth_token + user = '%s@x.com/gatorade' % auth_token password = auth_token plugin_config = { # Enables PLAIN authentication which is off by default.