Browse Source

WebAuth: remember_login = True; update docs

pull/41/head
Rossen Georgiev 9 years ago
parent
commit
4fce3a0692
  1. 2
      steam/client/builtins/web.py
  2. 19
      steam/webauth.py

2
steam/client/builtins/web.py

@ -15,7 +15,7 @@ class Web(object):
"""Get web authentication cookies via WebAPI's ``AuthenticateUser`` """Get web authentication cookies via WebAPI's ``AuthenticateUser``
.. note:: .. note::
only valid during the current steam session A session is only valid during the current steam session.
:return: dict with authentication cookies :return: dict with authentication cookies
:rtype: :class:`dict`, :class:`None` :rtype: :class:`dict`, :class:`None`

19
steam/webauth.py

@ -4,6 +4,15 @@ This module simplifies the process of obtaining an authenticated session for ste
After authentication is complete, a :class:`requests.Session` is created containing the auth cookies. After authentication is complete, a :class:`requests.Session` is created containing the auth cookies.
The session can be used to access ``steamcommunity.com``, ``store.steampowered.com``, and ``help.steampowered.com``. The session can be used to access ``steamcommunity.com``, ``store.steampowered.com``, and ``help.steampowered.com``.
.. warning::
A web session may expire randomly, or when you login from different IP address.
Some pages will return status code `401` when that happens.
Keep in mind if you are trying to write robust code.
.. note::
If you are using :class:`steam.client.SteamClient`, use :meth:`steam.client.builtins.web.Web.get_web_session()`
Example usage: Example usage:
.. code:: python .. code:: python
@ -34,9 +43,6 @@ Alternatively, if Steam Guard is not enabled on the account:
except wa.HTTPError: except wa.HTTPError:
pass pass
.. note::
If you are using :class:`steam.client.SteamClient`, see :meth:`steam.client.builtins.web.Web.get_web_session()`
""" """
from time import time from time import time
import sys import sys
@ -142,7 +148,7 @@ class WebAuth(object):
"captcha_text": captcha, "captcha_text": captcha,
"loginfriendlyname": "python-steam webauth", "loginfriendlyname": "python-steam webauth",
"rsatimestamp": self.timestamp, "rsatimestamp": self.timestamp,
"remember_login": False, "remember_login": 'true',
"donotcache": int(time() * 100000), "donotcache": int(time() * 100000),
} }
@ -157,12 +163,17 @@ class WebAuth(object):
self.complete = True self.complete = True
self.password = None self.password = None
rememberLogin = self.session.cookies['steamRememberLogin'] if 'steamRememberLogin' in self.session.cookies else None
self.session.cookies.clear() self.session.cookies.clear()
data = resp['transfer_parameters'] data = resp['transfer_parameters']
self.steamid = SteamID(data['steamid']) self.steamid = SteamID(data['steamid'])
for domain in ['store.steampowered.com', 'help.steampowered.com', 'steamcommunity.com']: for domain in ['store.steampowered.com', 'help.steampowered.com', 'steamcommunity.com']:
if rememberLogin:
self.session.cookies.set('steamRememberLogin', '%s||%s' % (data['steamid'], rememberLogin),
domain=domain, secure=False)
self.session.cookies.set('steamLogin', '%s||%s' % (data['steamid'], data['token']), self.session.cookies.set('steamLogin', '%s||%s' % (data['steamid'], data['token']),
domain=domain, secure=False) domain=domain, secure=False)
self.session.cookies.set('steamLoginSecure', '%s||%s' % (data['steamid'], data['token_secure']), self.session.cookies.set('steamLoginSecure', '%s||%s' % (data['steamid'], data['token_secure']),

Loading…
Cancel
Save