summaryrefslogtreecommitdiff
path: root/sleekxmpp/features/feature_mechanisms/mechanisms.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-01-06 23:31:58 -0500
committerLance Stout <lancestout@gmail.com>2012-01-06 23:31:58 -0500
commitc578ddeb1aae6fb0a9f60092b53831c1e952058d (patch)
tree362f03d62e8481a1939e6c2e5882212cac6689f4 /sleekxmpp/features/feature_mechanisms/mechanisms.py
parent8ef7188dae21f9ddde40365cdff8e046d7b4678a (diff)
downloadslixmpp-c578ddeb1aae6fb0a9f60092b53831c1e952058d.tar.gz
slixmpp-c578ddeb1aae6fb0a9f60092b53831c1e952058d.tar.bz2
slixmpp-c578ddeb1aae6fb0a9f60092b53831c1e952058d.tar.xz
slixmpp-c578ddeb1aae6fb0a9f60092b53831c1e952058d.zip
Add support for MSN with X-MESSENGER-OAUTH2 SASL support.
NOTE: This requires already having the access token. It does NOT perform any OAuth requests.
Diffstat (limited to 'sleekxmpp/features/feature_mechanisms/mechanisms.py')
-rw-r--r--sleekxmpp/features/feature_mechanisms/mechanisms.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/sleekxmpp/features/feature_mechanisms/mechanisms.py b/sleekxmpp/features/feature_mechanisms/mechanisms.py
index 2b8321c2..deff5d30 100644
--- a/sleekxmpp/features/feature_mechanisms/mechanisms.py
+++ b/sleekxmpp/features/feature_mechanisms/mechanisms.py
@@ -39,6 +39,8 @@ class feature_mechanisms(base_plugin):
values['username'] = self.xmpp.boundjid.user
if 'password' in values:
values['password'] = self.xmpp.password
+ if 'access_token' in values:
+ values['access_token'] = self.xmpp.password
mech.fulfill(values)
sasl_callback = self.config.get('sasl_callback', None)